Home
last modified time | relevance | path

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

/freebsd/sys/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);
/freebsd/contrib/libxo/xohtml/external/
H A Djquery.js8080 jQuery.ajaxSettings.xhr = window.ActiveXObject ?
8094 (function( xhr ) { argument
8096 ajax: !!xhr,
8097 cors: !!xhr && ( "withCredentials" in xhr )
8099 })( jQuery.ajaxSettings.xhr() );
8114 var xhr = s.xhr(),
8121 xhr.open( s.type, s.url, s.async, s.username, s.password );
8123 xhr.open( s.type, s.url, s.async );
8129 xhr[ i ] = s.xhrFields[ i ];
8134 if ( s.mimeType && xhr.overrideMimeType ) {
[all …]
H A Djquery.qtip.js345 function(xhr, status, error) { argument
346 if(api.destroyed || xhr.status === 0) { return; }