summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/whatwg/postMessage_override_helper.html
blob: 901e3af7bbaa8d423536fd8255664f3772f7e9d1 (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>Overriding postMessage and dispatchEvent bindings</title>
  <script type="application/javascript">
    window.postMessage = function (evt) {
      window.parent.postMessage("FAIL overridden postMessage called", "*");
    };

    var count = 0;

    function receiveMessage(evt) {
      count++;
      if (count == 2) {
        window.dispatchEvent = function(evt) {
          window.parent.postMessage("FAIL", "*");
          throw "dispatchEvent threw";
        };
      }

      window.parent.postMessage(evt.data, "http://mochi.test:8888");
    }

    function setup() {
      var target = document.getElementById("location");
      target.textContent = location.hostname + ":" + (location.port || 80);
    }

    window.addEventListener("message", receiveMessage);

    window.addEventListener("load", setup);
  </script>
</head>
<body>
<h1 id="location">No location!</h1>
</body>
</html>