Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!DOCTYPE html>
<html>
<!--
-->
<head>
<title>postMessage from a page with username/password in its URI</title>
<script 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=417075">Mozilla Bug 417075</a>
<p id="display"></p>
<div id="content" style="display: none"></div>
name="userPassKid"></iframe>
<pre id="test">
<script class="testbody" type="application/javascript">
/** Test for Bug 417075 **/
SimpleTest.waitForExplicitFinish();
function receiveMessage(evt)
{
is(evt.origin, "http://example.org", "wrong origin");
is(evt.data, "child-message", "wrong data");
is(evt.lastEventId, "", "postMessage creates events with empty lastEventId");
ok(evt.source === window.frames.userPassKid, "wrong source");
SimpleTest.finish();
}
window.addEventListener("message", receiveMessage);
function sendMessage(evt)
{
window.frames.userPassKid.postMessage("parent-message", "http://example.org");
}
window.addEventListener("load", sendMessage);
</script>
</pre>
</body>
</html>