OLD | NEW |
1 <!-- Copyright 2017 The Chromium Authors. All rights reserved. | 1 <!-- Copyright 2017 The Chromium Authors. All rights reserved. |
2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
3 found in the LICENSE file. --> | 3 found in the LICENSE file. --> |
4 <head> | 4 <head> |
5 <html> | 5 <html> |
6 <head> | 6 <head> |
7 <title>Popup created using window.open</title> | 7 <title>Popup created using window.open</title> |
8 <script> | 8 <script> |
9 function test() { | 9 function test() { |
10 window.open("data:text/html,<title>Popup Success!</title>" + | 10 window.open("popup-success.html", |
11 "you should not see this message if popup blocker is enabled", | |
12 "mywindow", "menubar=1, resizable=1, width=350, height=250, noopener"); | 11 "mywindow", "menubar=1, resizable=1, width=350, height=250, noopener"); |
13 } | 12 } |
14 </script> | 13 </script> |
15 </head> | 14 </head> |
16 <body onload="test()"> | 15 <body onload="test()"> |
17 pop-up test page | 16 pop-up test page |
18 </body> | 17 </body> |
19 </html> | 18 </html> |
OLD | NEW |