Home
last modified time | relevance | path

Searched refs:xhr (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/contrib/libsodium/test/default/
H A Dindex.html.tpl43 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);
/f-stack/tools/libxo/xohtml/external/
H A Djquery.js8094 (function( xhr ) { argument
8096 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 …]
H A Djquery.qtip.js345 function(xhr, status, error) { argument
346 if(api.destroyed || xhr.status === 0) { return; }