diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /testing/web-platform/tests/XMLHttpRequest/send-timeout-events.htm | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/web-platform/tests/XMLHttpRequest/send-timeout-events.htm')
-rw-r--r-- | testing/web-platform/tests/XMLHttpRequest/send-timeout-events.htm | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/testing/web-platform/tests/XMLHttpRequest/send-timeout-events.htm b/testing/web-platform/tests/XMLHttpRequest/send-timeout-events.htm new file mode 100644 index 000000000..6aea627d6 --- /dev/null +++ b/testing/web-platform/tests/XMLHttpRequest/send-timeout-events.htm @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<html> +<head> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + <title>XMLHttpRequest: The send() method: timeout is not 0 </title> + <link rel="help" href="https://xhr.spec.whatwg.org/#the-timeout-attribute" data-tested-assertations="following::ol[1]/li[2]" /> + <link rel="help" href="https://xhr.spec.whatwg.org/#infrastructure-for-the-send()-method" data-tested-assertations="following::dt[5] following::a[contains(@href,'#timeout-error')]/.." /> + <link rel="help" href="https://xhr.spec.whatwg.org/#timeout-error" data-tested-assertations=".." /> + <link rel="help" href="https://xhr.spec.whatwg.org/#request-error" data-tested-assertations="following::ol[1]/li[4] following::ol[1]/li[6] following::ol[1]/li[7]/ol/li[3] following::ol[1]/li[7]/ol/li[4] following::ol[1]/li[9] following::ol[1]/li[10]" /> +</head> + +<body> + <div id="log"></div> + + <script type="text/javascript"> + var test = async_test(); + + test.step(function() + { + var xhr = new XMLHttpRequest(); + var expect = [4, "", "upload.timeout", "upload.loadend", "timeout", "loadend"]; + var actual = []; + + xhr.onreadystatechange = test.step_func(function() + { + if (xhr.readyState == 4) + { + actual.push(xhr.readyState, xhr.response); + } + }); + + xhr.onloadend = test.step_func_done(function(e) + { + assert_equals(e.loaded, 0); + assert_equals(e.total, 0); + actual.push(e.type); + assert_array_equals(actual, expect); + }); + + xhr.ontimeout = test.step_func(function(e) + { + assert_equals(e.loaded, 0); + assert_equals(e.total, 0); + actual.push(e.type); + }); + + + xhr.upload.onloadend = test.step_func(function(e) + { + assert_equals(e.loaded, 0); + assert_equals(e.total, 0); + actual.push("upload." + e.type); + }); + + xhr.upload.ontimeout = test.step_func(function(e) + { + assert_equals(e.loaded, 0); + assert_equals(e.total, 0); + actual.push("upload." + e.type); + }); + + + var content = ""; + for (var i = 0; i < 121026; i++) + { + content += "[" + i + "]"; + } + + xhr.open("POST", "./resources/trickle.py", true); + xhr.timeout = 1; + xhr.send(content); + }); + </script> +</body> +</html> |