mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
69 lines
1.5 KiB
HTML
69 lines
1.5 KiB
HTML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test for JSVersion in workers - Bug 487070</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
<pre id="test">
|
|
<script class="testbody" language="javascript">
|
|
|
|
var gExpectedError = false;
|
|
|
|
onerror = function(evt) {
|
|
ok(gExpectedError, "Error expected!");
|
|
runTest();
|
|
}
|
|
|
|
function doMagic() {
|
|
var worker = new Worker('jsversion_worker.js');
|
|
worker.onmessage = function(evt) {
|
|
ok(evt.data, 'All the tests passed');
|
|
runTest();
|
|
}
|
|
worker.postMessage(1);
|
|
}
|
|
|
|
var tests = [
|
|
// No custom version
|
|
function() {
|
|
gExpectedError = true;
|
|
SpecialPowers.pushPrefEnv({"set":[['dom.workers.latestJSVersion', false]]},
|
|
function() { doMagic(true); });
|
|
},
|
|
|
|
// Enable latest JS Version
|
|
function() {
|
|
gExpectedError = false;
|
|
SpecialPowers.pushPrefEnv({"set":[['dom.workers.latestJSVersion', true]]},
|
|
function() { doMagic(false); });
|
|
}
|
|
];
|
|
|
|
function runTest() {
|
|
if (!tests.length) {
|
|
SimpleTest.finish();
|
|
return;
|
|
}
|
|
|
|
var test = tests.shift();
|
|
test();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
runTest();
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|