summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_026.htm
blob: 7171cf7721df3dbebc7efdd0886e3b2886fefe81 (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>