blob: c04c90b5aa581dd2c0f8e3809336411dfb8508a0 [file] [log] [blame]
<!DOCTYPE html>
<body onload="runTest()">
<iframe id="testframe" src="resources/left-right.html" width="100%" height="300px" frameborder="0"></iframe>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
function runTest() {
if (sessionStorage.didNav) {
delete sessionStorage.didNav;
if (window.testRunner)
testRunner.notifyDone();
} else {
// Navigate a timeout to make sure we generate a history entry that we
// can go back to.
setTimeout(function() {location.href = 'data:text/html,<script>history.back();</' + 'script>';}, 0);
sessionStorage.didNav = true;
}
}
</script>
</body>