Backed out changeset 06f41c22f3a6 (bug 1888460) for causing linux xpcshell failures...
[gecko.git] / dom / workers / test / test_bug1132924.html
blobb5b952e908791181f43fb787ab5bc3f98e81c195
1 <!--
2 Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/publicdomain/zero/1.0/
4 -->
5 <!DOCTYPE HTML>
6 <html>
7 <head>
8 <title>Test for 1132924</title>
9 <script src="/tests/SimpleTest/SimpleTest.js"></script>
10 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
11 </head>
12 <body>
14 <script class="testbody" type="text/javascript">
16 SimpleTest.waitForExplicitFinish();
17 var w = new Worker('bug1132924_worker.js');
18 w.onmessage = function(event) {
19 ok(true, "We are still alive.");
20 SimpleTest.finish();
23 w.postMessage('go');
25 </script>
26 </pre>
27 </body>
28 </html>