Update web-platform-tests to revision 50d6ee076e94273080d9f3b69be0bf4eeae156d3

This commit is contained in:
WPT Sync Bot 2018-08-22 21:45:47 -04:00
parent 3b9055510a
commit 280c87822d
331 changed files with 4209 additions and 866 deletions

View file

@ -9,6 +9,9 @@
<link rel="help" href="https://xhr.spec.whatwg.org/#request-error" data-tested-assertations="following::ol[1]/li[9]"/>
<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]" />
<meta name=timeout content=long>
<meta name=variant content="?load fires normally with no timeout set, twice">
<meta name=variant content="?load fires normally with same timeout set twice">
<meta name=variant content="?timeout fires normally with same timeout set twice">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/xmlhttprequest-timeout-runner.js"></script>
@ -18,7 +21,7 @@
<p>This test validates that the XHR2 timeout property behaves as expected in in a worker context.</p>
<div id="log"></div>
<script type="text/javascript">
var worker = new Worker("resources/xmlhttprequest-timeout-twice.js");
var worker = new Worker("resources/xmlhttprequest-timeout-twice.js" + location.search);
worker.addEventListener("message", testResultCallbackHandler);
</script>
</body>