Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: chrome/test/data/popup_blocker/popup-sessionstorage.html

Issue 20924002: Try to restore window.opener when opening blocked popups (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sessionStorage+opener Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>
4 Check that the session storage namespace is correctly set when opening a
5 blocked popup
6 </title>
7 <script>
8 function test() {
9 sessionStorage.setItem("key", "set");
10 window.open("check-sessionstorage.html");
11 }
12 </script>
13 </head>
14 <body onload="test()">
15 pop-up test page
16 </body>
17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698