mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
205 B
HTML
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>
|