Home
last modified time | relevance | path

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

/external/webkit/WebCore/manual-tests/inspector-wrappers/
Dinspector-wrappers-test-utils.js13 xhr(win);
16 function xhr(win) { function
17 var xhr = new win.XMLHttpRequest();
22 xhr.open("GET", url, false);
23 xhr.send();
24 truealert("Result:\n\n" + xhr.responseText);
/external/webkit/SunSpider/tests/parse-only/
Djquery-1.3.2.js3381 xhr:function(){
3510 var xhr = s.xhr();
3515 xhr.open(type, s.url, s.async, s.username, s.password);
3517 xhr.open(type, s.url, s.async);
3523 xhr.setRequestHeader("Content-Type", s.contentType);
3527 xhr.setRequestHeader("If-Modified-Since",
3531 xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
3534 xhr.setRequestHeader("Accept", s.dataType && s.accepts[ s.dataType ] ?
3540 if ( s.beforeSend && s.beforeSend(xhr, s) === false ) {
3545 xhr.abort();
[all …]
Dconcat-jquery-mootools-prototype.js3381 xhr:function(){
3510 var xhr = s.xhr();
3515 xhr.open(type, s.url, s.async, s.username, s.password);
3517 xhr.open(type, s.url, s.async);
3523 xhr.setRequestHeader("Content-Type", s.contentType);
3527 xhr.setRequestHeader("If-Modified-Since",
3531 xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
3534 xhr.setRequestHeader("Accept", s.dataType && s.accepts[ s.dataType ] ?
3540 if ( s.beforeSend && s.beforeSend(xhr, s) === false ) {
3545 xhr.abort();
[all …]
Dmootools-1.2.2-core-nc.js356 Browser.Features.xhr = !!(Browser.Request());
3701 this.xhr = new Browser.Request();
3708 if (this.xhr.readyState != 4 || !this.running) return;
3712 this.status = this.xhr.status;
3715 this.response = {text: this.xhr.responseText, xml: this.xhr.responseXML};
3721 this.xhr.onreadystatechange = $empty;
3746 this.fireEvent('complete').fireEvent('failure', this.xhr);
3756 return this.xhr.getResponseHeader(name);
3813 this.xhr.open(method.toUpperCase(), url, this.options.async);
3815 this.xhr.onreadystatechange = this.onStateChange.bind(this);
[all …]
/external/webkit/WebCore/bindings/js/
DJSEventTarget.cpp112 if (XMLHttpRequest* xhr = target->toXMLHttpRequest()) in toJS() local
113 return toJS(exec, globalObject, xhr); in toJS()
/external/webkit/LayoutTests/http/tests/appcache/resources/
Dxhr-foreign-resource.manifest2 xhr-foreign-resource-frame.html
/external/webkit/WebKit/cf/
DChangeLog6 REGRESSION(r49365): typeof(xhr.responseText) != "string" in Windows
/external/webkit/WebCore/bindings/v8/
DV8DOMWrapper.cpp439 if (XMLHttpRequest* xhr = target->toXMLHttpRequest()) in convertEventTargetToV8Object() local
440 return toV8(xhr); in convertEventTargetToV8Object()
/external/webkit/WebCore/inspector/front-end/
DResource.js398 this.category = WebInspector.resourceCategories.xhr;
Dinspector.css2776 .resources-category-scripts, .resources-category-xhr, .resources-category-fonts, .resources-categor…
2784 .filter-all .resources-category-xhr, .filter-xhr .resources-category-xhr,
2853 .resources-category-xhr .resources-graph-bar {
2857 .resources-category-xhr.resource-cached .resources-graph-bar {
3246 .resource-sidebar-tree-item.resources-category-xhr .icon {
3250 .children.small .resource-sidebar-tree-item.resources-category-xhr .icon {
DResourcesPanel.js654 case WebInspector.resourceCategories.xhr:
Dinspector.js459xhr: new WebInspector.ResourceCategory("xhr", WebInspector.UIString("XHR"), "rgb(231,231,10)"), property
/external/webkit/WebCore/
DChangeLog-2009-06-162382 Test: storage/hash-change-with-xhr.html
29832 Test: fast/dom/Window/window-early-properties-xhr.html
32822 Bug 24330: Sync xhr in workers should send an abort exception when the worker is terminated.
32834 Add more logic to handle the termination case for sync xhr.
33978 Stop active objects when the thread is getting shutdown so that xhr gets properly shutdown.
35238 The xhr spec says that the readystatechange events are synchronous, so in the case of a
35239 nested sync xhr no readystatechange events should be fired for the outer xhr.
35264 Changes the behavior of sync xhr for insecure redirects in two ways:
35265 … + Sends an error event instead of an abort event (which is the same as async xhr's behavior).
54734 Test: http/tests/appcache/xhr-foreign-resource.html
[all …]
DChangeLog-2007-10-1414031 * manual-tests/memory/xhr-multiple-requests-responseText.html: Added.
14032 * manual-tests/memory/xhr-multiple-requests-responseXML.html: Added.
14033 * manual-tests/memory/xhr-multiple-requests.html: Added.
14034 * manual-tests/memory/xhr-repeated-string-access.xml: Added.
67930 Test: fast/xsl/transform-xhr-doc.xhtml
DChangeLog-2010-01-2913519 REGRESSION(r49365): typeof(xhr.responseText) != "string" in Windows
61722 http/tests/xmlhttprequest/workers/shared-worker-xhr-file-not-found.html
65941 Test: This code path is exercised while running xhr layout tests in chromium.
82634 Null deref in JSObject::mark due to null xhr wrapper
82637 Make event target binding for appcache and xhr behave in the same way as
DChangeLog-2006-12-3129399 Test: http/tests/xmlhttprequest/xhr-onunload.html
/external/webkit/JavaScriptCore/
DChangeLog3061 REGRESSION(r49365): typeof(xhr.responseText) != "string" in Windows
DChangeLog-2009-06-1617152 fast/xsl/transform-xhr-doc.xhtml