blob: ea93278ba739a8cb55326446bc49c3edb1b27f93 [file] [log] [blame]
<html>
<head>
<title>Popup created using window.open</title>
<script>
function popup() {
window.open("popup-success.html",
"_blank", "menubar=1, resizable=1, width=350, height=250");
}
</script>
</head>
<body onunload="popup()">
pop-up test page
</body>
</html>