Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<head>
<title>postMessage origin-testing helper page</title>
<script type="application/javascript"><![CDATA[
function receiveMessage(evt)
{
if (event.data === "PING") {
window.parent.postMessage("PONG", "*");
return;
}
var response = "PASS";
response += " wrong-origin(" + evt.origin + ")";
if (evt.source !== window.parent)
response += " wrong-source";
if (evt.data !== "PASS")
response += " wrong-data(" + evt.data + ")";
}
window.addEventListener("message", receiveMessage);
// Aids for identifying origins
function setup()
{
var target = document.getElementById("location");
target.textContent = location.hostname + ":" + (location.port || 80);
}
window.addEventListener("load", setup);
]]></script>
</head>
<body>
<h1 id="location">No location!</h1>
</body>
</html>