blob: 17816af6bdd4dd502ebd0185dba46b11d029b602 (
plain)
1
2
3
4
5
6
7
8
|
<!doctype html>
<script>
window.addEventListener("pageshow", function(e) {
window.opener.handlePageShow(e.persisted);
});
</script>
<a href="?1">This is a very interesting page</a>
<iframe srcdoc="And this is a nested frame"></iframe>
|