blob: dfafbcc5428221a735f4542462c1b5903aa3ae4e [file] [edit]
This page should go back after 0.5 seconds. If a test outputs the contents of this
page, then the test page failed to enter the page cache.
<script>
function triggerBackNavigation() {
setTimeout(function() {
history.back();
}, 500);
}
window.addEventListener("pageshow", (event) => {
if (event.persisted)
triggerBackNavigation();
});
window.addEventListener("load", function() {
triggerBackNavigation();
});
</script>