chromium/third_party/blink/web_tests/http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-twice.html

 <!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>XHR2 Timeout Property Tests in Worker</title>
    <link rel="help" href="http://www.w3.org/TR/XMLHttpRequest/#timeout-error" />
    <link rel="stylesheet" href="/w3c/resources/testharness.css" />
    <script src="/w3c/resources/testharness.js"></script>
    <script src="/w3c/resources/testharnessreport.js"></script>
    <script src="xmlhttprequest-timeout-runner.js"></script>
    <script type="text/javascript">
        function testXhr() {
            var worker = new Worker("xmlhttprequest-timeout.js");
            worker.addEventListener("message", testResultCallbackHandler);

            var runTests = { "type": "start", "group": groupFromLocation() };
            worker.postMessage(runTests);
        };
    </script>
</head>
<body onload="testXhr()">
    <h1>Description</h1>
    <p>This test validates that the XHR2 timeout property behaves as expected in in a worker context.</p>
    <div id="log"></div>
</body>
</html>