blob: e61a1c105ef9453b19f7e2906c25c997bf978de9 [file] [log] [blame]
<html>
<head>
<script>
function runTest()
{
history.pushState("New history Item", "1Ping!");
history.pushState("New history Item", "2Ping!");
history.pushState("New history Item", "3Ping!");
window.opener.document.getElementById("result").innerText = "history.length is: " + history.length;
if (window.opener.testRunner)
window.opener.testRunner.notifyDone();
window.close()
}
</script>
<body onload="runTest();" >
</body>
</html>