summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/whatwg/test_postMessage_userpass.html
blob: b47266fc45975843ae2b7e69cd2662b9a81603d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=417075
-->
<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>

<iframe src="http://bobhope:password@example.org/tests/dom/tests/mochitest/whatwg/postMessage_userpass_helper.html"
        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>