mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
51 lines
1.4 KiB
HTML
51 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=430251
|
|
-->
|
|
<head>
|
|
<title>postMessage's interaction with pages at jar: URIs</title>
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="text/javascript" src="browserFu.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
<base href="http://example.com/" />
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=430251">Mozilla Bug 430251</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
|
|
<iframe src="jar:http://example.com/tests/dom/tests/mochitest/whatwg/postMessage.jar!/postMessage_jar.html"
|
|
name="kid"></iframe>
|
|
|
|
<pre id="test">
|
|
<script class="testbody" type="application/javascript">
|
|
/** Test for Bug 430251 **/
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
function receiveMessage(evt)
|
|
{
|
|
is(evt.origin, "http://example.com", "wrong sender");
|
|
ok(evt.source === window.frames.kid, "wrong source");
|
|
|
|
is(evt.data, "finish-test", "wrong data");
|
|
is(evt.lastEventId, "", "wrong lastEventId");
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
window.addEventListener("message", receiveMessage, false);
|
|
|
|
function run()
|
|
{
|
|
window.frames.kid.postMessage("start-test", "http://example.com");
|
|
}
|
|
|
|
window.addEventListener("load", run, false);
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|