blob: c5c3a940295c00fd50af7f79b2adfeb91459989c [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("Attempting to clear parent window's history object:");
try {
parent.window.history = "";
} catch (e) {
console.log(e);
}
parent.window.postMessage("done", "*");
}
</script>
<body>
HELLO THERE
</body>
</html>