chromium/third_party/blink/web_tests/external/wpt/html/browsers/browsing-the-web/navigating-across-documents/empty_fragment_iframe.html

<script>
var timeout;
onload = function() {
  location.hash = "";
  timeout = setTimeout(function() { parent.child_succeeded() }, 2000);
};

onbeforeunload = function() {
  clearTimeout(timeout);
}
</script>