summaryrefslogtreecommitdiffstats
path: root/dom/broadcastchannel/tests/test_broadcastchannel_basic.html
blob: 45fa3c4a9d744ca4e97cad9d9aa29cb6d800a186 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!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() {
  addEventListener('message', receiveMessage, false);
  function receiveMessage(evt) {
    if (evt.data.status == 'OK') {
      ok(true, evt.data.message);
    } else if (evt.data.status == 'KO') {
      ok(false, evt.data.message);
    } else {
      ok(false, "Unknown message");
    }
  }

  ok("BroadcastChannel" in window, "BroadcastChannel exists");

  var bc = new BroadcastChannel("foobar");
  ok(bc, "BroadcastChannel can be created");
  is(bc.name, 'foobar', "BroadcastChannel.name is foobar");

  ok("postMessage" in bc, "BroadcastChannel has postMessage() method");

  bc.onmessage = function(evt) {
    ok(evt instanceof MessageEvent, "This is a MessageEvent");
    is(evt.target, bc, "MessageEvent.target is bc");
    is(evt.target.name, 'foobar', "MessageEvent.target.name is foobar");
    is(evt.target.name, bc.name, "MessageEvent.target.name == bc.name");
    ok(evt.origin.indexOf('http://mochi.test:8888') == 0, "MessageEvent.origin is correct");
    is(evt.data, "Hello world from the iframe!", "The message from the iframe has been received!");
    SimpleTest.finish();
  }

  var div = document.getElementById("content");
  ok(div, "Parent exists");

  var ifr = document.createElement("iframe");
  ifr.addEventListener("load", iframeLoaded, false);
  ifr.setAttribute('src', "iframe_broadcastchannel.html");
  div.appendChild(ifr);

  function iframeLoaded() {
    bc.postMessage("Hello world from the window!");
  }

  // A leak test
  var dummyBc = new BroadcastChannel("dont_leak_this");
  dummyBc.foo = "bar";
  // don't add message listener!
}

SimpleTest.waitForExplicitFinish();
runTest();

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