blob: c776bf97961e5804dff42e14bb2bd3e7e822a175 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test for Bug 1697539</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="application/javascript">
"use strict";
var worker = new Worker("worker_bug1697539.js");
worker.onmessage = function(e) {
is(e.data, "InvalidStateError", "Should get InvalidStateError");
SimpleTest.finish();
};
function runTests() {
worker.postMessage("http://localhost:8888");
}
SimpleTest.waitForExplicitFinish();
</script>
</head>
<body onload="runTests()">
</body>
</html>
|