mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
53 lines
1.6 KiB
HTML
53 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=postMessage
|
|
-->
|
|
<head>
|
|
<title>postMessage called through a different same-origin page</title>
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="text/javascript" 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, false);
|
|
window.addEventListener("load", run, false);
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|