summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/history/the-history-interface/traverse_the_history_5-1.html
blob: 6a28a85683b62d001661d27bcc8b108f393b5046 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<script src="history.js"></script>
<script>
  opener.pages.push(id);
  if (!opener.started) {
    onload = function() {
      setTimeout(function() {
        opener.started = true;
        history.go(10); //Outside the range
        history.go(-1);
        history.go(-2);
      }, 100);
    }
  }
</script>