blob: e3cb9861a32aa937eb0335878d94c1bd3b7d2288 [file] [log] [blame]
<html>
<script>
if (window.testRunner)
testRunner.dumpAsText();
window.onmessage = function(evt)
{
if (evt.data == "setHistoryLength") {
setHistoryLength();
return;
} else
alert("Unknown message.");
}
function setHistoryLength()
{
alert("About to shadow child window's history object: " + window.history);
window.history = "";
if (window.history === "")
alert("FAIL: Shadowed child window's history object: " + window.history);
else
alert("PASS: Could not shadow child window's history object: " + window.history);
parent.window.postMessage("done", "*");
}
</script>
<body>
HELLO THERE
</body>
</html>