summaryrefslogtreecommitdiffstats
path: root/dom/broadcastchannel/tests/test_broadcastchannel_close2.html
blob: a8a748c4622f7f1a757603ca7a1e01081b4db14d (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
38
39
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for BroadcastChannel</title>
  <script type="application/javascript" 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() {
  var c1 = new BroadcastChannel('foo');
  var c2 = new BroadcastChannel('foo');

  var status = [];
  c2.onmessage = function(e) {
    status.push(e.data);
    if (status.length == 2) {
      is (status[0], 'first', "First message has been received");
      is (status[1], 'second', "Second message has been received");
      SimpleTest.finish();
    }

    c2.close();
  }

  c1.postMessage('first');
  c1.postMessage('second');
}

SimpleTest.waitForExplicitFinish();
runTest();

</script>
</body>
</html>