blob: d4342561f6c60d5cb04151be77a89ade93b25c47 [file] [log] [blame]
<html>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.setCanOpenWindows();
testRunner.dumpAsText();
}
try {
window.open('about:blank', "_blank", "", true);
document.write("success");
} catch (ex) {
document.write("FAIL - caught exception: " + ex);
}
if (window.testRunner) {
testRunner.notifyDone();
}
</script>
<div>This tests that calling window.open() with a boolean as a fourth parameter does no throw an exception.</div>
</html>