blob: f6536f5cdb22e045979859a97997ac3e2665789d [file] [log] [blame]
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
</head>
<body>
<button id="test" onclick="popup()" style="display:none"></button>
<div id="console"></div>
<script>
var win;
function popup() {
win = window.open("about:blank", "blank");
shouldBeUndefined("win");
}
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.setCanOpenWindows();
testRunner.setPopupBlockingEnabled(true);
testRunner.setCloseRemainingWindowsWhenComplete(true);
testRunner.waitUntilDone();
}
document.getElementById("test").click();
if (window.testRunner)
testRunner.notifyDone();
</script>
</body>
</html>