summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/test_rvals.html
blob: 799c42779d1143b2b9f0ba6927cda6adc3c22bf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for bug 911085</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<script class="testbody" type="text/javascript">

  var worker = new Worker("rvals_worker.js");

  worker.onmessage = function(event) {
    if (event.data == 'ignore') return;

    if (event.data == 'finished') {
      is(worker.terminate(), undefined, "Terminate() returns 'undefined'");
      SimpleTest.finish();
      return;
    }

    ok(event.data, "something good returns 'undefined' in workers");
  };

  is(worker.postMessage(42), undefined, "PostMessage() returns 'undefined' on main thread");
  SimpleTest.waitForExplicitFinish();

</script>
</pre>
</body>
</html>