mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
c4d9d86152
--HG-- rename : dom/workers/test/bug911085_worker.js => dom/workers/test/rvals_worker.js rename : dom/workers/test/test_bug911085.html => dom/workers/test/test_rvals.html
38 lines
932 B
HTML
38 lines
932 B
HTML
<!--
|
|
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 type="text/javascript" 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>
|
|
|
|
|