Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <head> | |
| 3 <title> | |
| 4 Check that the session storage namespace is not accessible blocked popup | |
|
Charlie Reis
2013/08/01 20:23:08
nit: 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> | |
| OLD | NEW |