blob: e6d4a0a715be7291358a65438a18fcdfbd3e0dcf [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="/js-test-resources/js-test.js"></script>
</head>
<body>
<a id="testLink" target="foo" rel="noreferrer" href="/navigation/resources/otherpage.html"></a>
<script>
description("Make sure that windows opened with 'noreferrer' are not targetable. If testing manually, you should see 2 tabs open.");
jsTestIsAsync = true;
onload = function() {
testLink.click();
setTimeout(function() {
w = open("/navigation/resources/otherpage.html", "foo"); // Should create a new window.
shouldBeEqualToString("w.location.href", "about:blank");
w.onload = function() {
if (window.testRunner)
shouldBe("testRunner.windowCount()", "3");
finishJSTest();
}
}, 100);
}
</script>
</body>
</html>