Unregister from GCM when the only GCM app is removed
[chromium-blink-merge.git] / chrome / test / data / popup_blocker / check-opener.html
blob606aff5442ae14d3d5a55bf1150e50b9d6a52370
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Check that window.opener is set</title>
5 </head>
6 <body>
7 <div id="console"></div>
8 <script>
9 var log = document.querySelector("#console");
10 var result;
11 if (window.opener != null)
12 result = "PASS";
13 else
14 result = "FAIL: opener not set";
15 log.innerText = result;
16 document.title = result;
17 </script>
18 </body>
19 </html>