mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
565722e27e
--HG-- extra : rebase_source : 8419648607fbf9f7acd672cb0f94ce7a05a32d88
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>
|