Lines Matching refs:responseText

1409 }else{if(type=="text"){return t.responseText
1410 }else{if(type=="html"){return t.responseText
1412 }else{if(type=="json"){return eval("("+t.responseText+")")
2971 var source=sourceMap[url]=xhr.responseText;
4989 XHRSpy.prototype={method:null,url:null,async:null,xhrRequest:null,href:null,loaded:false,logRow:null,responseText:null,requestHeaders:null,responseHeaders:null,sourceLink:null,getURL:function(){return this.href
4998 self.responseText=xhrRequest.responseText;
5001 var updateXHRPropertiesIgnore={channel:1,onreadystatechange:1,readyState:1,responseBody:1,responseText:1,responseXML:1,status:1,statusText:1,upload:1};
5023 }}with({row:spy.logRow,status:xhrRequest.status==0?"":xhrRequest.status+" "+xhrRequest.statusText,time:duration,success:success}){setTimeout(function(){spy.responseText=xhrRequest.responseText;
5222 }responseTextBox[typeof responseTextBox.textContent!="undefined"?"textContent":"innerText"]=file.responseText;
5287 }}var jsonData={responseText:data};
5300 },insertJSON:function(parentNode,file,context){var text=file.responseText;
5371 },getResponseText:function(file,context){return(typeof(file.responseText)!="undefined")?file.responseText:context.sourceCache.loadText(file.href,file.method,file)
5484 },copyResponse:function(spy){copyToClipboard(spy.responseText)
5538 if(!file.jsonObject){if(this.isJSON(file.mimeType,file.responseText)){file.jsonObject=this.parseJSON(file)
5541 }}},isJSON:function(contentType,data){var responseText=data?trim(data):null;
5542 if(responseText&&responseText.indexOf("{")==0){return true
5552 }},parseJSON:function(file){var jsonString=new String(file.responseText);
5563 }if(this.isXML(file.mimeType,file.responseText)){Firebug.NetMonitor.NetInfoBody.appendTab(infoBox,"XML",$STR("XML"));