| Index: chrome/test/data/popup_blocker/popup-sessionstorage.html
|
| diff --git a/chrome/test/data/popup_blocker/popup-sessionstorage.html b/chrome/test/data/popup_blocker/popup-sessionstorage.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9313bc6594b155691569d15d24f51f151b14799b
|
| --- /dev/null
|
| +++ b/chrome/test/data/popup_blocker/popup-sessionstorage.html
|
| @@ -0,0 +1,17 @@
|
| +<html>
|
| +<head>
|
| +<title>
|
| + Check that the session storage namespace is correctly set when opening a
|
| + blocked popup
|
| +</title>
|
| +<script>
|
| +function test() {
|
| + sessionStorage.setItem("key", "set");
|
| + window.open("check-sessionstorage.html");
|
| +}
|
| +</script>
|
| +</head>
|
| +<body onload="test()">
|
| +pop-up test page
|
| +</body>
|
| +</html>
|
|
|