chromium/third_party/blink/web_tests/http/tests/navigation/location-navigate-iframe-with-base-target.html

<body>
PASS
<iframe id="i" src="resources/location-navigate-iframe-with-base-target-iframe.html"></iframe>
<script>
if (window.testRunner)
  testRunner.dumpAsText();

var navigated = false;
i.onload = function() {
  if (navigated)
    return;
  navigated = true;
  i.contentWindow.location = "resources/blank.txt";
}
</script>