mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
32 lines
813 B
HTML
32 lines
813 B
HTML
|
<!--
|
||
|
Any copyright is dedicated to the Public Domain.
|
||
|
http://creativecommons.org/publicdomain/zero/1.0/
|
||
|
-->
|
||
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js">
|
||
|
</script>
|
||
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<script type="text/javascript">
|
||
|
const message = "hi";
|
||
|
const url = "DATA:text/plain," +
|
||
|
"onmessage = function(event) {" +
|
||
|
" postMessage(event.data);" +
|
||
|
"};";
|
||
|
|
||
|
var worker = new Worker(url);
|
||
|
worker.onmessage = function(event) {
|
||
|
is(event.data, message, "Got correct message");
|
||
|
SimpleTest.finish();
|
||
|
};
|
||
|
worker.postMessage(message);
|
||
|
|
||
|
SimpleTest.waitForExplicitFinish();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|
||
|
|