mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
13 lines
396 B
HTML
13 lines
396 B
HTML
<!DOCTYPE html>
|
|
<title> postMessage() with WorkerNavigator </title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<div id=log></div>
|
|
<script>
|
|
async_test(function(t) {
|
|
var worker = new Worker("./support/WorkerDataCloneErr.js");
|
|
worker.onmessage = t.step_func_done(function(e) {
|
|
assert_equals(e.data, "Pass");
|
|
});
|
|
});
|
|
</script>
|