mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
48 lines
1.3 KiB
HTML
48 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=414815
|
|
-->
|
|
<head>
|
|
<title>postMessage's interaction with a <base> tag</title>
|
|
<script type="text/javascript" src="/MochiKit/MochiKit.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=414815">Mozilla Bug 414815</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
|
|
<pre id="test">
|
|
<script class="testbody" type="application/javascript">
|
|
/** Test for Bug 414815 **/
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
function receiveMessage(evt)
|
|
{
|
|
is(evt.origin, "http://localhost:8888", "wrong sender");
|
|
ok(evt.source === window, "wrong source");
|
|
|
|
is(evt.data, "generate-event", "wrong data");
|
|
is(evt.lastEventId, "", "wrong lastEventId");
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
window.addEventListener("message", receiveMessage, false);
|
|
|
|
function run()
|
|
{
|
|
window.postMessage("generate-event", "http://localhost:8888");
|
|
}
|
|
|
|
window.addEventListener("load", run, false);
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|