summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/bugs/bug346659-opener.html
blob: 52facb07a22d73b04aff5f2a01e227beb10440ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<body onload="postBack();">
  <script>
    function postBack() {
      var s = decodeURIComponent(window.location.search.substring(1));
      var cmd = JSON.parse(s);
      if ("load" in cmd) {
        window.testNum = cmd.load;
      } else if ("write" in cmd) {
        window.testNum = cmd.write;
      }
      window.opener.postMessage(s, "http://mochi.test:8888");
    }
    var childWin = window.open();
  </script>
</body>