servo/tests/wpt/css-tests/resources/examples/apisample14.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

29 lines
807 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Dedicated Worker Tests</title>
<script src="../testharness.js"></script>
<script src="../testharnessreport.js"></script>
</head>
<body>
<h1>Dedicated Web Worker Tests</h1>
<p>Demonstrates running <tt>testharness</tt> based tests inside a dedicated web worker.
<p>The test harness is expected to fail due to an uncaught exception in one worker.</p>
<div id="log"></div>
<script>
test(function(t) {
assert_true("Worker" in self, "Browser should support Workers");
},
"Browser supports Workers");
fetch_tests_from_worker(new Worker("apisample-worker.js"));
fetch_tests_from_worker(new Worker("apisample-error-worker.js"));
test(function(t) {
assert_false(false, "False is false");
},
"Test running on main document.");
</script>
</body>