blob: df49720e7a34d4bc728ad3eed82cb31a0dd8a929 (
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">
/* eslint-disable */
var myWorker = new Worker("test-message-categories-workers.js");
myWorker.postMessage("hello world");
</script>
</body>
</html>
|