diff options
Diffstat (limited to '')
-rw-r--r-- | test/wpt/tests/xhr/send-sync-timeout.htm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/wpt/tests/xhr/send-sync-timeout.htm b/test/wpt/tests/xhr/send-sync-timeout.htm new file mode 100644 index 0000000..46d8686 --- /dev/null +++ b/test/wpt/tests/xhr/send-sync-timeout.htm @@ -0,0 +1,29 @@ +<!doctype html> +<html> + <head> + <title>XMLHttpRequest: timeout during sync send() should not run</title> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method"/> + </head> + <body> + <div id="log"></div> + <script> + var test = async_test(), + hasrun = false + test.step(function() { + client = new XMLHttpRequest() + client.open("GET", "folder.txt", false) + test.step_timeout(() => { hasrun = true }, 0) + client.onreadystatechange = function() { + test.step(function() { + assert_equals(client.readyState, 4) + assert_false(hasrun) + }) + } + client.send(null) + test.done() + }) + </script> + </body> +</html> |