<html>
<head>
<script>
var worker = new Worker("expect-throw-on-construction.js");
worker.onmessage = function (evt)
{
window.opener.postMessage(evt.data, "*");
};
</script>
</head>
<body>
</body>
</html>
<html>
<head>
<script>
var worker = new Worker("expect-throw-on-construction.js");
worker.onmessage = function (evt)
{
window.opener.postMessage(evt.data, "*");
};
</script>
</head>
<body>
</body>
</html>