chromium/third_party/blink/web_tests/fast/dom/Window/open-invalid-url.html

<html>
<head>
</head>
<body>
<script>
if (window.testRunner) {
    testRunner.dumpAsText();
    testRunner.waitUntilDone();
    testRunner.setPopupBlockingEnabled(false);
}

var a = window.open("about:blank","moonshine")
function mountainGoat() {
        a.window.eval('setTimeout("console.log(window.open(\'/\') ? \'FAIL\' : \'PASS\'); if (window.testRunner) testRunner.notifyDone()", 0)')
}
setTimeout("mountainGoat()", 0)
</script>
</body>
</html>