blob: 0c0fa40ce04903692496ba8a8cd66f66eac1c003 [file] [log] [blame]
<html>
<head>
<title>JavaScript Redirect</title>
<script>
if (window.testRunner) {
testRunner.clearBackForwardList();
testRunner.waitUntilDone();
}
window.onload = function() {
setTimeout(function () {
document.location = "resources/redirect-target.html#2";
}, 0);
}
</script>
</head>
<body>
This page modifies document.location after the load event.
It must create a new history entry.
</body>
</html>