mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
43 lines
975 B
HTML
43 lines
975 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://localhost: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>
|