Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / popup_blocker / popup-window-open.html
bloba4f58b36c9672f1843776e8cf18efb1d293e8bb9
1 <html>
2 <head>
3 <title>Popup created using window.open</title>
4 <script>
5 function test() {
6 window.open("data:text/html,<title>Popup Success!</title>" +
7 "you should not see this message if popup blocker is enabled",
8 "mywindow", "menubar=1, resizable=1, width=350, height=250");
10 </script>
11 </head>
12 <body onload="test()">
13 pop-up test page
14 </body>
15 </html>