summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/whatwg/test_postMessage_onOther.html
blob: 502ebca36c3d9fccde711246f5cc0158d7e191d1 (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
<!DOCTYPE html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=postMessage
-->
<head>
  <title>postMessage called through a different same-origin page</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=postMessage">Mozilla Bug 387706</a>
<p id="display"></p>
<div id="content" style="display: none"></div>

<iframe src="http://example.com/tests/dom/tests/mochitest/whatwg/postMessage_onOther.html"
        name="topDomainFrame"></iframe>
<iframe src="http://test1.example.com/tests/dom/tests/mochitest/whatwg/postMessage_onOther.html"
        name="subDomainFrame"></iframe>


<pre id="test">
<script class="testbody" type="application/javascript">
/** Test for Bug 387706 **/

SimpleTest.waitForExplicitFinish();

/** Receives MessageEvents to this window. */
function messageReceiver(evt)
{
  ok(evt instanceof MessageEvent, "wrong event type");
  is(evt.origin, "http://test1.example.com", "unexpected origin");
  is(evt.lastEventId, "", "postMessage creates events with empty lastEventId");
  is(evt.data, "test-finished",
     "unexpected data in message");

  SimpleTest.finish();
}

function run()
{
  window.frames.subDomainFrame.postMessage("start-test",
                                           "http://test1.example.com");
}

window.addEventListener("message", messageReceiver);
window.addEventListener("load", run);
</script>
</pre>
</body>
</html>