blob: 1ac8f3a4a068a5bd6de78ea7ccfc3a09812a1a01 [file] [log] [blame]
<html>
<body>
<script>
if (window.testRunner)
testRunner.dumpAsText();
win = window.open("about:blank");
alert(win ? "FAIL" : "about:blank successfully blocked");
win = window.open("data:text/html, hello");
alert(win ? "data url should not be blocked" : "FAIL");
win = window.open("data:text/html, about");
alert(win ? "data url should not be blocked" : "FAIL");
</script>
</body>
</html>