OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <title>Popup created using window.open</title> | 3 <title>Popup created using window.open</title> |
4 <script> | 4 <script> |
5 function test() { | 5 function test() { |
6 window.open("data:text/html,<title>Popup Success!</title>" + | 6 window.open("popup-success.html", |
7 "you should not see this message if popup blocker is enabled", | |
8 "mywindow", "menubar=1, resizable=1, width=350, height=250"); | 7 "mywindow", "menubar=1, resizable=1, width=350, height=250"); |
9 } | 8 } |
10 </script> | 9 </script> |
11 </head> | 10 </head> |
12 <body onload="test()"> | 11 <body onload="test()"> |
13 pop-up test page | 12 pop-up test page |
14 </body> | 13 </body> |
15 </html> | 14 </html> |
OLD | NEW |