chromium/third_party/blink/web_tests/http/tests/navigation/replacestate-base-legal.html

<html>
<head>
<base id="base">
<script>
if (window.testRunner) {
    testRunner.dumpAsText();
    testRunner.waitUntilDone();
}

var url = window.location.href;
url = url.slice(0, url.lastIndexOf('/') + 1) + "resources/";
document.getElementById("base").href = url;

window.onload = function() {
    window.history.replaceState({}, {}, "replacestate-base-pass.html");
    window.history.go(0);
}

</script>
</head>
</html>