mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
37 lines
992 B
HTML
37 lines
992 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Cannot get globalStorage objects for partial IP addresses</title>
|
|
<script type="application/javascript" src="/MochiKit/MochiKit.js"></script>
|
|
<script type="application/javascript" 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>
|
|
|
|
<iframe name="child" src="http://127.0.0.1:8888/tests/dom/tests/mochitest/bugs/iframe_bug409349.html"></iframe>
|
|
|
|
<pre id="test">
|
|
<script class="testbody" type="application/javascript">
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
function receiveMessage(evt)
|
|
{
|
|
is(evt.origin, "http://127.0.0.1:8888", "wrong sender");
|
|
ok(evt.source === window.frames.child, "wrong sender");
|
|
|
|
is(evt.data, "child-response", "got wrong response");
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
window.addEventListener("message", receiveMessage, false);
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|