Searched refs:xhr (Results 1 – 3 of 3) sorted by relevance
43 var xhr, expected, hn, idx = 0, passed = true;72 xhr = new ActiveXObject('Microsoft.XMLHTTP');74 xhr = new XMLHttpRequest();76 xhr.open('GET', tname + '.exp');77 xhr.onreadystatechange = function() {78 if (xhr.readyState != 4 ||79 (xhr.status != 200 && xhr.status != 302 && xhr.status != 0)) {82 expected = xhr.responseText.split('\n');93 xhr.send(null);
8094 (function( xhr ) { argument8096 ajax: !!xhr,8097 cors: !!xhr && ( "withCredentials" in xhr )8099 })( jQuery.ajaxSettings.xhr() );8114 var xhr = s.xhr(),8129 xhr[ i ] = s.xhrFields[ i ];8190 if ( xhr.readyState !== 4 ) {8191 xhr.abort();8194 status = xhr.status;8197 xml = xhr.responseXML;[all …]
345 function(xhr, status, error) { argument346 if(api.destroyed || xhr.status === 0) { return; }