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

<!doctype html>
<script src="history.js"></script>
<script>
  onunload = function() {}

  onload = function() {
    if (!opener.started) {
      queue_next();
    } else {
      opener.pages.push(id);
      if (!opener.gone) {
          history.go();
          opener.gone = true;
      }
    }
  };
</script>