blob: e2ab5b009c34a66ec979b2637e0a85f4f091ec8a [file] [log] [blame]
<!-- webkit-test-runner [ UsesBackForwardCache=true ] -->
<script>
window.onpageshow = function(evt) {
if (!evt.persisted)
return;
alert("The page was restored from the page cache. Good job!");
if (window.testRunner)
testRunner.notifyDone();
}
window.onload = function() {
alert("This page is https and should go in to the page cache.");
setTimeout('window.location = "go-back.html"', 0);
}
</script>