chromium/third_party/blink/web_tests/external/wpt/html/browsers/history/the-history-interface/traverse_the_history_1-1.html

<!doctype html>
4
<script>
  onunload = function() {}

  opener.pages.push(4);
  if (!opener.started) {
    onload = function() {
      setTimeout(function() {
        opener.started = true;
        history.go(-2);
        history.go(-1);
      }, 100);
    }
  }
</script>