mirror of
https://github.com/servo/servo.git
synced 2025-09-03 03:28:20 +01:00
Update web-platform-tests.
This commit is contained in:
parent
74afd086d2
commit
71008d816d
62 changed files with 793 additions and 150 deletions
|
@ -0,0 +1,14 @@
|
|||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<div id=log></div>
|
||||
<script>
|
||||
async_test(function(t) {
|
||||
var w = new Worker("importscripts.js")
|
||||
w.onmessage = t.step_func(function(e) {
|
||||
if(e.data == "END")
|
||||
t.done()
|
||||
else
|
||||
assert_equals(e.data, "PASS")
|
||||
})
|
||||
}, "Test importScripts()")
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue