Unregister from GCM when the only GCM app is removed
[chromium-blink-merge.git] / chrome / test / data / popup_blocker / popup-on-unload.html
bloba2a2aa2656936742fc5d3bcdbde0676d2ecc9e45
1 <html>
2 <head>
3 <title>Popup created using window.open</title>
4 <script>
5 function popup() {
6 window.open("data:text/html,<title>Popup Success!</title>" +
7 "you should not see this message if popup blocker is enabled",
8 "_blank", "menubar=1, resizable=1, width=350, height=250");
11 </script>
12 </head>
13 <body onunload="popup()">
14 pop-up test page
15 </body>
16 </html>