Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: http3 OR http2
- Manifest: dom/tests/mochitest/whatwg/mochitest.toml
<!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>
<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>
name="topDomainFrame"></iframe>
name="subDomainFrame"></iframe>
<pre id="test">
<script class="testbody" type="application/javascript">
SimpleTest.waitForExplicitFinish();
/** Receives MessageEvents to this window. */
function messageReceiver(evt)
{
ok(evt instanceof MessageEvent, "wrong event type");
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>