summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/whatwg/postMessage_origin_helper.xhtml
blob: 9dd00c1ee2904eba48d0ff6ee0c0e6b84fcc22ba (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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>postMessage origin-testing helper page</title>
  <script type="application/javascript"><![CDATA[
function receiveMessage(evt)
{
  var response = "PASS";

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

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

window.addEventListener("message", receiveMessage, false);


// Aids for identifying origins

function setup()
{
  var target = document.getElementById("location");
  target.textContent = location.hostname + ":" + (location.port || 80);
}

window.addEventListener("load", setup, false);
  ]]></script>
</head>
<body>
<h1 id="location">No location!</h1>
</body>
</html>