blob: d413c17e35764e5d81394395dda797ddda4ced26 [file] [log] [blame]
<html>
<head>
<title>
Check that the session storage namespace is not accessible to 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>