2 Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/publicdomain/zero/1.0/
8 <title>Test for URL protocol setter in workers
</title>
9 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
10 <link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css" />
14 <div id=
"content" style=
"display: none"></div>
16 <script class=
"testbody" type=
"text/javascript">
18 let worker = new Worker(
"protocol_worker.js");
20 worker.onmessage = function(event) {
21 is(event.target, worker,
"Correct worker");
23 if (event.data.type ==
"finish") {
28 if (event.data.type ==
"status") {
29 ok(event.data.status, event.data.msg);
33 ok(false,
"Invalid message.");
36 SimpleTest.waitForExplicitFinish();