summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/XMLHttpRequest/abort-after-timeout.htm
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-02-04 19:41:06 +0000
committerMoonchild <moonchild@palemoon.org>2021-02-04 19:41:06 +0000
commit914368530ba622ff0117cd34bec058fb0d862155 (patch)
tree6c29459914d1b01ed27fad039d0b982d1dbc32c3 /testing/web-platform/tests/XMLHttpRequest/abort-after-timeout.htm
parentc5ad76a2875ca5c06c5bbff7b2f2e3ff7b3599c3 (diff)
downloadUXP-914368530ba622ff0117cd34bec058fb0d862155.tar
UXP-914368530ba622ff0117cd34bec058fb0d862155.tar.gz
UXP-914368530ba622ff0117cd34bec058fb0d862155.tar.lz
UXP-914368530ba622ff0117cd34bec058fb0d862155.tar.xz
UXP-914368530ba622ff0117cd34bec058fb0d862155.zip
Issue #439 - Remove web-platform tests from the tree.
This removes a total of 23,936 files we would never use nor have the capacity to properly maintain or keep up-to-date.
Diffstat (limited to 'testing/web-platform/tests/XMLHttpRequest/abort-after-timeout.htm')
-rw-r--r--testing/web-platform/tests/XMLHttpRequest/abort-after-timeout.htm58
1 files changed, 0 insertions, 58 deletions
diff --git a/testing/web-platform/tests/XMLHttpRequest/abort-after-timeout.htm b/testing/web-platform/tests/XMLHttpRequest/abort-after-timeout.htm
deleted file mode 100644
index e8e84b1a3..000000000
--- a/testing/web-platform/tests/XMLHttpRequest/abort-after-timeout.htm
+++ /dev/null
@@ -1,58 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <title>XMLHttpRequest: abort() after a timeout should not fire "abort" event</title>
- <script src="/resources/testharness.js"></script>
- <script src="/resources/testharnessreport.js"></script>
- <link rel="help" href="https://xhr.spec.whatwg.org/#the-abort()-method" data-tested-assertations="following::ol[1]/li[4] following::ol[1]/li[5]"/>
- <link rel="help" href="https://xhr.spec.whatwg.org/#the-timeout-attribute" data-tested-assertations="following::ol[1]/li[2]"/>
-</head>
-<body>
-<div id="log"></div>
-<script>
- var test = async_test();
-
- test.step(function() {
- // timeout is 100ms
- // the download would otherwise take 1000ms
- // we check after 300ms to make sure abort does not fire an "abort" event
-
- var timeoutFired = false;
-
- var client = new XMLHttpRequest();
-
- assert_true('timeout' in client, 'xhr.timeout is not supported in this user agent');
-
- client.timeout = 100;
-
- setTimeout(test.step_func(function() {
- assert_true(timeoutFired);
-
- // abort should not cause the "abort" event to fire
- client.abort();
-
- setTimeout(function(){ // use a timeout to catch any implementation that might queue an abort event for later - just in case
- test.step(function(){test.done();});
- }, 200);
-
- assert_equals(client.readyState, 0);
-
- test.done();
- }), 300);
-
- client.ontimeout = function () {
- timeoutFired = true;
- };
-
- client.onabort = test.step_func(function () {
- // this should not fire!
-
- assert_unreached("abort() should not cause the abort event to fire");
- });
-
- client.open("GET", "/common/blank.html?pipe=trickle(d1)", true);
- client.send(null);
- });
-</script>
-</body>
-</html>