2014-06-27 10:04:45 -07:00
|
|
|
<!--
|
|
|
|
Any copyright is dedicated to the Public Domain.
|
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
-->
|
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Test for bug 998474</title>
|
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content" style="display: none"></div>
|
|
|
|
<pre id="test"></pre>
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
|
|
|
|
function boom()
|
|
|
|
{
|
|
|
|
var worker = new SharedWorker("bug998474_worker.js");
|
|
|
|
|
|
|
|
setTimeout(function() {
|
|
|
|
port = worker.port;
|
|
|
|
port.postMessage("");
|
|
|
|
|
|
|
|
setTimeout(function() {
|
|
|
|
port.start();
|
|
|
|
ok(true, "Still alive!");
|
|
|
|
SimpleTest.finish();
|
|
|
|
}, 150);
|
|
|
|
}, 150);
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
2014-12-11 10:34:40 -08:00
|
|
|
SimpleTest.requestFlakyTimeout("untriaged");
|
2014-06-27 10:04:45 -07:00
|
|
|
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|