tenfourfox/dom/browser-element/mochitest/file_browserElement_OpenWindowRejected.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

17 lines
205 B
HTML

<html>
<body>
<script>
var w = window.open('does_not_exist.html');
if (!w) {
alert("success:w is null");
}
else {
alert("failure:w is not null -- " + w);
}
alert("finish");
</script>
</body>
</html>