diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/xhr/xmlhttprequest-network-error-sync.htm | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/xhr/xmlhttprequest-network-error-sync.htm')
-rw-r--r-- | testing/web-platform/tests/xhr/xmlhttprequest-network-error-sync.htm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/web-platform/tests/xhr/xmlhttprequest-network-error-sync.htm b/testing/web-platform/tests/xhr/xmlhttprequest-network-error-sync.htm new file mode 100644 index 0000000000..ee367fbe0e --- /dev/null +++ b/testing/web-platform/tests/xhr/xmlhttprequest-network-error-sync.htm @@ -0,0 +1,34 @@ +<!doctype html> +<html> + <head> + <title>XMLHttpRequest: members during network errors (sync)</title> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + <link rel="help" href="https://xhr.spec.whatwg.org/#infrastructure-for-the-send()-method" data-tested-assertations="following::dl[1]/dt[2] following::dl[1]/dd[2]/p[1]" /> + <link rel="help" href="https://xhr.spec.whatwg.org/#network-error" data-tested-assertations=".." /> + <link rel="help" href="https://xhr.spec.whatwg.org/#request-error" data-tested-assertations="following::ol[1]/li[5]" /> + <link rel="help" href="https://xhr.spec.whatwg.org/#the-status-attribute" data-tested-assertations="following::ol[1]/li[1] following::ol[1]/li[2]" /> + <link rel="help" href="https://xhr.spec.whatwg.org/#the-statustext-attribute" data-tested-assertations="following::ol[1]/li[1] following::ol[1]/li[2]" /> + <link rel="help" href="https://xhr.spec.whatwg.org/#the-getresponseheader()-method" data-tested-assertations="following::ol[1]/li[1] following::ol[1]/li[2]" /> + <link rel="help" href="https://xhr.spec.whatwg.org/#the-getallresponseheaders()-method" data-tested-assertations="following::ol[1]/li[1] following::ol[1]/li[2]" /> + <link rel="help" href="https://xhr.spec.whatwg.org/#the-responsetext-attribute" data-tested-assertations="following::ol[1]/li[2] following::ol[1]/li[3]" /> + <link rel="help" href="https://xhr.spec.whatwg.org/#the-responsexml-attribute" data-tested-assertations="following::ol[1]/li[2] following::ol[1]/li[3]" /> + </head> + <body> + <div id="log"></div> + <script> + test(function() { + var client = new XMLHttpRequest() + client.open("GET", "resources/infinite-redirects.py", false) + assert_throws_dom("NetworkError", function() { client.send(null) }, "send") + assert_equals(client.status, 0, "status") + assert_equals(client.statusText, "", "statusText") + assert_equals(client.getAllResponseHeaders(), "", "getAllResponseHeaders") + assert_equals(client.getResponseHeader("content-type"), null, "getResponseHeader") + assert_equals(client.responseText, "", "responseText") + assert_equals(client.responseXML, null, "responseXML") + assert_equals(client.readyState, client.DONE, "readyState") + }) + </script> + </body> +</html> |