blob: c1e601dd130c88137efcb4d0313e9b2089a8f005 [file] [log] [blame]
Andrew Top61a84952019-04-30 15:07:33 -07001 <!DOCTYPE html>
2<html>
3<head>
4 <meta charset="utf-8" />
5 <title>XHR2 Timeout Property Tests in Worker</title>
6 <link rel="help" href="https://xhr.spec.whatwg.org/#the-timeout-attribute" data-tested-assertations="following::ol[1]/li[2]" />
7 <link rel="help" href="https://xhr.spec.whatwg.org/#handler-xhr-ontimeout" data-tested-assertations="../.."/>
8 <link rel="help" href="https://xhr.spec.whatwg.org/#timeout-error" data-tested-assertations=".."/>
9 <link rel="help" href="https://xhr.spec.whatwg.org/#request-error" data-tested-assertations="following::ol[1]/li[9]"/>
10 <link rel="help" href="https://xhr.spec.whatwg.org/#infrastructure-for-the-send()-method" data-tested-assertations="following-sibling::dl//code[contains(@title,'dom-XMLHttpRequest-timeout')]/.. following-sibling::dl//code[contains(@title,'dom-XMLHttpRequest-timeout')]/../following-sibling::dd following::dt[1] following::dd[1]" />
11 <link rel="stylesheet" href="/resources/testharness.css" />
12 <meta name=timeout content=long>
13 <script src="/resources/testharness.js"></script>
14 <script src="/resources/testharnessreport.js"></script>
15 <script src="resources/xmlhttprequest-timeout-runner.js"></script>
16</head>
17<body>
18 <h1>Description</h1>
19 <p>This test validates that the XHR2 timeout property behaves as expected in in a worker context.</p>
20 <div id="log"></div>
21 <script type="text/javascript">
22 var worker = new Worker("resources/xmlhttprequest-timeout-overridesexpires.js");
23 worker.addEventListener("message", testResultCallbackHandler);
24 </script>
25</body>
26</html>