blob: 501f71f09cb5cdc5e0bf0c4819de20e7190d789f (
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
33
34
35
36
37
|
<!DOCTYPE HTML>
<html>
<head>
<title>Test for BroadcastChannel</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<div id="content"></div>
<script type="application/javascript">
function runTest() {
let x = new BroadcastChannel("foo");
let y = new BroadcastChannel("foo");
function func(e) {
is(e.target, y, "The target is !x");
SimpleTest.executeSoon(function() {
SimpleTest.finish();
});
}
x.onmessage = func;
y.onmessage = func;
x.postMessage("foo");
}
SimpleTest.waitForExplicitFinish();
runTest();
</script>
</body>
</html>
|