Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!DOCTYPE html>
<html>
<!--
-->
<head>
<title>postMessage with document.domain setting to join origins</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="container"></iframe>
<pre id="test">
<script class="testbody" type="application/javascript">
/** Test for Bug 387706 **/
SimpleTest.waitForExplicitFinish();
function receiveTestResult(evt)
{
ok(evt instanceof MessageEvent, "umm, how did we get this?");
is(evt.type, "message", "expected events of type 'message'");
ok(evt.isTrusted === true, "should have been a trusted event");
is(evt.lastEventId, "", "postMessage creates events with empty lastEventId");
// Either we passed the test or we failed it. The message's
// contents should help to diagnose the failure. Either way,
// consider this the end of the test.
is(evt.data, "test-passed", "unexpected test result");
SimpleTest.finish();
}
function setup()
{
window.addEventListener("message", receiveTestResult);
window.frames.container.postMessage("start-test",
}
addLoadEvent(setup);
</script>
</pre>
</body>
</html>