blob: 1a6c7026e9a05c376fdad97bc6cb332b2f7c6f1c [file] [log] [blame]
<html>
<script>
if (window.testRunner)
testRunner.dumpAsText();
window.onmessage = function(evt)
{
if (evt.data == "setHistoryLength") {
setHistoryLength();
return;
} else
console.log("Unknown message.");
}
function setHistoryLength()
{
console.log("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>