summaryrefslogtreecommitdiffstats
path: root/dom/messagechannel/tests/test_messageChannel_post.html
blob: 86c27efc3e82d7bc67c6c4b9e91f63c7bf1a8ada (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
69
70
71
72
73
74
75
76
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=677638
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 677638 - port cloning</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=677638">Mozilla Bug 677638</a>
<div id="content"></div>
<pre id="test">
</pre>
  <script type="application/javascript">

  function start() {
    var a = new MessageChannel();
    ok(a, "MessageChannel created");

    window.addEventListener('message', receiveMessage);
    function receiveMessage(evt) {
      if (evt.data.status == 'READY') {
        runTest();
      } else {
        ok(false, "Unknown message");
      }
    }

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

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

    function iframeLoaded() {
      ifr.contentWindow.postMessage({ port: a.port2 }, '*', [a.port2]);
    }

    var tests = [ 42,
                  null,
                  undefined,
                  "hello world",
                  new Blob([]),
                  true ];

    a.port1.onmessage = function(evt) {
      ok(tests.length, "We are waiting for a message");
      if (typeof(tests[0]) == 'object') {
        is(typeof(tests[0]), typeof(evt.data), "Value ok: " + tests[0]);
      } else {
        is(tests[0], evt.data, "Value ok: " + tests[0]);
      }
      tests.shift();
      runTest();
    }

    function runTest() {
      if (!tests.length) {
        SimpleTest.finish();
        return;
      }

      a.port1.postMessage(tests[0]);
    }
  }

  SimpleTest.waitForExplicitFinish();
  start();
  </script>
</body>
</html>