blob: 9aeb1b6ca5bba6125b861a0822685999a3ba2621 [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:");
parent.window.history = "";
parent.window.postMessage("done", "*");
}
</script>
<body>
HELLO THERE
</body>
</html>