summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/test-bug-595934-workers.html
blob: baf5a621571ba10777f8145c2faee413f3ae988d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Web Console test for bug 595934 - category: DOM Worker
      javascript</title>
    <!-- Any copyright is dedicated to the Public Domain.
         http://creativecommons.org/publicdomain/zero/1.0/ -->
  </head>
  <body>
    <p id="foobar">Web Console test for bug 595934 - category "DOM Worker
    javascript".</p>
    <script type="text/javascript">
      var myWorker = new Worker("test-bug-595934-workers.js");
      myWorker.postMessage("hello world");
    </script>
  </body>
</html>