summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_032.htm
blob: 6059b7df43f98f79ad3d1538b4d0ed141c268ba4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head><title>XMLHttpRequest</title>
</head>
<body>
    <script type="text/javascript">

        try
        {
            xhrRequest = new XMLHttpRequest();

            xhrRequest.onreadystatechange = function () {
                if (xhrRequest.readyState == 4 && xhrRequest.status == 200) {
                    //xhr successful
                    parent.window.postMessage("access to window.XMLHttpRequest", "*");
                }
            }

            xhrRequest.open("GET", "standalone-pass.htm", true);
            xhrRequest.send();

        }catch(e){}

        parent.window.postMessage("no access to window.XMLHttpRequest", "*");
    </script>
</body>
</html>