servo/tests/wpt/css-tests/resources/examples/apisample15.html
Ms2ger 296fa2512b Update web-platform-tests and CSS tests.
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180.
- Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
2017-02-06 22:38:29 +01:00

26 lines
888 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Example with a shared worker</title>
<script src="../testharness.js"></script>
<script src="../testharnessreport.js"></script>
</head>
<body>
<h1>Shared Web Worker Tests</h1>
<p>Demonstrates running <tt>testharness</tt> based tests inside a shared worker.
<p>The test harness should time out due to one of the tests in the worker timing out.
<p>This test assumes that the browser supports <a href="http://www.w3.org/TR/workers/#shared-workers-and-the-sharedworker-interface">shared web workers</a>.
<div id="log"></div>
<script>
test(
function(t) {
assert_true("SharedWorker" in self,
"Browser should support SharedWorkers");
},
"Browser supports SharedWorkers");
fetch_tests_from_worker(new SharedWorker("apisample-worker.js",
"My shared worker"));
</script>
</body>