2 Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/publicdomain/zero/1.0/
8 <title>Test for bug
1090183</title>
9 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
10 <link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css" />
14 <script class=
"testbody" type=
"text/javascript">
16 var sw = new SharedWorker('websocket_sharedWorker.js');
17 sw.port.onmessage = function(event) {
18 if (event.data.type == 'finish') {
20 } else if (event.data.type == 'status') {
21 ok(event.data.status, event.data.msg);
25 SimpleTest.waitForExplicitFinish();