Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / popup_blocker / popup-sessionstorage.html
blobd413c17e35764e5d81394395dda797ddda4ced26
1 <html>
2 <head>
3 <title>
4 Check that the session storage namespace is not accessible to a blocked popup
5 </title>
6 <script>
7 function test() {
8 sessionStorage.setItem("key", "set");
9 window.open("check-sessionstorage.html");
11 </script>
12 </head>
13 <body onload="test()">
14 pop-up test page
15 </body>
16 </html>