mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
49 lines
1.3 KiB
HTML
49 lines
1.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=440572
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 440572</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 onload="runtests()">
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=440572">Mozilla Bug 440572</a>
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
/** Test for Bug 440572 **/
|
|
|
|
var messages = [];
|
|
|
|
function receiveMessage(e)
|
|
{
|
|
is(e.origin, "http://example.org", "wrong sender!");
|
|
messages.push(e.data);
|
|
}
|
|
|
|
window.addEventListener("message", receiveMessage, false);
|
|
|
|
function runtests()
|
|
{
|
|
for (i in messages) {
|
|
is(messages[i], "success", "test in frame failed.");
|
|
}
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
</script>
|
|
<br>
|
|
<iframe name="test" src="http://example.org:80/tests/dom/tests/mochitest/bugs/iframe_bug440572.html"></iframe>
|
|
<br>
|
|
<iframe name="content" src="http://example.org:80/tests/dom/tests/mochitest/bugs/iframe_bug440572.html"></iframe>
|
|
<br>
|
|
<iframe name="dump" src="http://example.org:80/tests/dom/tests/mochitest/bugs/iframe_bug440572.html"></iframe>
|
|
</body>
|
|
</html>
|
|
|