Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!DOCTYPE html>
<html>
<!--
-->
<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>
<p id="display"></p>
<div id="content" style="display: none"></div>
name="topDomainFrame"></iframe>
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",
}
window.addEventListener("message", messageReceiver);
window.addEventListener("load", run);
</script>
</pre>
</body>
</html>