- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / popup_blocker / popup-sessionstorage.html
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");
10 }
11 </script>
12 </head>
13 <body onload="test()">
14 pop-up test page
15 </body>
16 </html>