summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/old-tests/submission/Microsoft/sandbox/iframe_sandbox_026.htm
blob: 5f1a973e1f77213bb7d678dded58d5731fabd562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
<head><title>Page with access to localStorage and sessionStorage</title>
</head>
<body>
    <script type="text/javascript">
        if (window.localStorage && window.sessionStorage) {
            parent.window.postMessage("access to window.localStorage and window.sessionStorage", "*");            
        }
    </script>
</body>
</html>