summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/browsing-the-web/history-traversal/001-1.html
blob: cadcf126f5442e1dfb58d935991d6beb7ad4ec7b (plain)
1
2
3
4
5
6
7
8
9
10
11
<!doctype html>
001-1
<script>
addEventListener("pageshow",
  function(e) {
    parent.events.push(e);
    if (parent.events.length == 2) {
      parent.do_test();
    }
  }, false);
</script>