summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/whatwg/postMessage_userpass_helper.html
blob: 762cf52f9f2bb0abc4d30f8cd40f215fb123d44a (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
<!DOCTYPE html>
<html>
<head>
  <title>Username/password page for postMessage tests</title>
  <script type="application/javascript">

function sendMessage(evt)
{
  var msg = "child-message";

  if (evt.origin !== "http://mochi.test:8888")
    msg += " wrong-origin(" + evt.origin + ")";
  if (evt.data !== "parent-message")
    msg += " wrong-data(" + evt.data + ")";
  if (evt.lastEventId !== "")
    msg += " wrong-lastEventId(" + evt.lastEventId + ")";
  if (evt.source !== window.parent)
    msg += " wrong-source";

  // It would be good to guarantee that we've been opened with a userinfo of
  // "bobhope:password", but Gecko elides that from the content-visible URL,
  // and I can't find another way to actually detect this programmatically.

  window.parent.postMessage(msg, "http://mochi.test:8888");
}

window.addEventListener("message", sendMessage);
  </script>
</head>
<body>
<p>Kid iframe</p>
</body>
</html>