blob: ae4e2a1728e8fcb054ddc1158057995c2e3b40b6 [file] [log] [blame]
<html>
<head>
<title>Popup created using window.open</title>
<script>
function popup(name) {
window.open("data:text/html,<title>Popup Success!</title>" +
"you should not see this message if popup blocker is enabled",
name, "menubar=1, resizable=1, width=350, height=250");
}
function test() {
popup('mywindow');
popup('_blank');
}
</script>
</head>
<body onload="test()">
pop-up test page
</body>
</html>