blob: 51c7981c13179868b13e05f9d56c7ea4f965f181 [file] [log] [blame]
<html>
<script>
function runTest()
{
if (document.location.search === "?opened-window") {
alert(window.sessionStorage['storageKey'])
return;
}
window.sessionStorage['storageKey'] = 'value';
window.open("close-from-within-create-page.html?opened-window");
}
</script>
<body onload="runTest()">
</body>
</html>