<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> |