mirror of
https://github.com/servo/servo.git
synced 2025-09-11 23:48:21 +01:00
Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab
This commit is contained in:
parent
1a81b18b9f
commit
2c9faf5363
91915 changed files with 5979820 additions and 0 deletions
26
tests/wpt/css-tests/resources/apisample15.html
Normal file
26
tests/wpt/css-tests/resources/apisample15.html
Normal file
|
@ -0,0 +1,26 @@
|
|||
<!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>
|
Loading…
Add table
Add a link
Reference in a new issue