blob: 6c21fbb28c6a7cecc978296628a032c015415c1d [file] [log] [blame]
<script>
window.onload = function() {
if (!sessionStorage.beganTest) {
sessionStorage.beganTest = true;
top.opener.windowLoaded();
}
}
window.onunload = function() {
// No page cache
}
window.onpopstate = function(e) {
alert("onpopstate");
top.opener.notifyDone(window == parent ? "FAIL" : "PASS");
}
</script>