summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_029.htm
blob: 5d5c720bd8694d3891f8d9e1c2b0c166bb0008d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head><title>Page with access to document.cookie</title>
</head>
<body>
    <div>Cookie Read: <span id="readCookie"></span></div>
    <script type="text/javascript">
        try
        {
            cookie = document.cookie;
            document.cookie = "name=browser";
            parent.window.postMessage("cookies are R/W", "*");
        }catch(e)
        {
            parent.window.postMessage("cookies are not R/W", "*");
        }
    </script>
</body>
</html>