Lines Matching refs:xhrRequest

4989 XHRSpy.prototype={method:null,url:null,async:null,xhrRequest:null,href:null,loaded:false,logRow:nul…  property in XHRSpy
4991 var XMLHttpRequestWrapper=function(activeXObject){var xhrRequest=typeof activeXObject!="undefined"?…
4993 var updateSelfProperties=function(){if(supportsXHRIterator){for(var propName in xhrRequest){if(prop…
4994 }try{var propValue=xhrRequest[propName];
4996 }}catch(E){}}}else{if(xhrRequest.readyState==4){self.status=xhrRequest.status;
4997 self.statusText=xhrRequest.statusText;
4998 self.responseText=xhrRequest.responseText;
4999 self.responseXML=xhrRequest.responseXML
5004 if(propValue&&!xhrRequest[propName]){xhrRequest[propName]=propValue
5011 var success=xhrRequest.status==200;
5012 var responseHeadersText=xhrRequest.getAllResponseHeaders();
5023 …s:xhrRequest.status==0?"":xhrRequest.status+" "+xhrRequest.statusText,time:duration,success:succes…
5031 var handleStateChange=function(){self.readyState=xhrRequest.readyState;
5032 if(xhrRequest.readyState==4){finishXHR();
5033 xhrRequest.onreadystatechange=function(){}
5052 spy.xhrRequest=xhrRequest;
5054 try{if(supportsApply){xhrRequest.open.apply(xhrRequest,arguments)
5055 }else{xhrRequest.open(method,url,async,user,password)
5056 }}catch(e){}xhrRequest.onreadystatechange=handleStateChange
5061 try{xhrRequest.send(data)
5063 if(!spy.async){self.readyState=xhrRequest.readyState;
5067 return xhrRequest.setRequestHeader(header,value)
5069 this.abort=function(){xhrRequest.abort();
5073 this.getResponseHeader=function(header){return xhrRequest.getResponseHeader(header)
5075 this.getAllResponseHeaders=function(){return xhrRequest.getAllResponseHeaders()
5077 var supportsApply=!isIE6&&xhrRequest&&xhrRequest.open&&typeof xhrRequest.open.apply!="undefined";
5079 for(var propName in xhrRequest){numberOfXHRProperties++;
5081 }try{var propValue=xhrRequest[propName];
5085 })(propName,xhrRequest)
5402 var xhrRequest=callbacks?callbacks.getInterface(Ci.nsIXMLHttpRequest):null;
5403 if(FBTrace.DBG_NET){FBTrace.sysout("net.isXHR; "+(xhrRequest!=null)+", "+safeGetName(request))
5404 }return(xhrRequest!=null)
5491 },getRealObject:function(spy,context){return spy.xhrRequest
5504 try{var errorRange=Math.floor(spy.xhrRequest.status/100);
5520 var channel=spy.xhrRequest.channel;
5525 try{var channel=spy.xhrRequest.channel;