blob: 567fdb017db708d18575694390ca56a01ea3a691 (
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
28
29
30
31
32
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test for Bug 1752863</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="application/javascript">
SimpleTest.waitForExplicitFinish();
var worker = new Worker("test_bug1752863_worker.js");
worker.onmessage = function(event) {
if (event.data == "DOMException") {
ok(true, "Got DOMException");
// If we got our expected event first, eventually following wrong ones
// can be ignored.
worker.onmessage = null;
} else if (event.data == "TERMINATE") {
ok(false, "Got TERMINATE");
} else {
ok(false, "Unexpected message: " + event.data);
}
SimpleTest.finish();
}
worker.postMessage(true);
</script>
</head>
</html>
|