blob: 39f3da19ac4217fb6c2e5c0baaf476b9d9e94c87 [file] [log] [blame]
<script>
onload = function() {
setTimeout(function() {
location.hash = "#foo";
}, 0);
}
onhashchange = function() {
if (location.hash == "#foo") {
history.back();
}
if (location.hash == "") {
parent.document.getElementById("result").innerText = "PASS";
if (window.testRunner)
testRunner.notifyDone();
}
}
</script>