tenfourfox/dom/tests/mochitest/whatwg/postMessage_override_helper.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

43 lines
976 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Overriding postMessage and dispatchEvent bindings</title>
<script type="application/javascript">
window.postMessage = function (evt)
{
window.parent.postMessage("FAIL overridden postMessage called", "*");
};
var count = 0;
function receiveMessage(evt)
{
count++;
if (count == 1)
{
window.dispatchEvent = function(evt)
{
window.parent.postMessage("FAIL", "*");
throw "dispatchEvent threw";
};
}
window.parent.postMessage(evt.data, "http://mochi.test:8888");
}
function setup()
{
var target = document.getElementById("location");
target.textContent = location.hostname + ":" + (location.port || 80);
}
window.addEventListener("message", receiveMessage, false);
window.addEventListener("load", setup, false);
</script>
</head>
<body>
<h1 id="location">No location!</h1>
</body>
</html>