From b83081ba644b70876a64b3abd7eb11109c1e7a1d Mon Sep 17 00:00:00 2001 From: jaubourg Date: Mon, 21 Jan 2013 02:44:16 +0100 Subject: Never use the XML as parsed by the XHR instance. Use raw text instead and let the ajax conversion logic do the trick. -20 min/gzipped. Fixes #13276. Unit test added. --- src/ajax/xhr.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'src/ajax') diff --git a/src/ajax/xhr.js b/src/ajax/xhr.js index 3c1fde374..2353392f6 100644 --- a/src/ajax/xhr.js +++ b/src/ajax/xhr.js @@ -105,8 +105,7 @@ if ( xhrSupported ) { var status, statusText, responseHeaders, - responses, - xml; + responses; // Firefox throws exceptions when accessing properties // of an xhr when a network error occurred @@ -136,14 +135,8 @@ if ( xhrSupported ) { } else { responses = {}; status = xhr.status; - xml = xhr.responseXML; responseHeaders = xhr.getAllResponseHeaders(); - // Construct response list - if ( xml && xml.documentElement /* #4958 */ ) { - responses.xml = xml; - } - // When requesting binary data, IE6-9 will throw an exception // on any attempt to access responseText (#11426) if ( typeof xhr.responseText === "string" ) { -- cgit v1.2.3