chromium/third_party/blink/web_tests/http/tests/security/listener/resources/targetChild-JSTargetNode-onclick-shortcut.html

<html>
<body>
    <p>Target Child</p>
    <script>
        window.parent.frames[1].document.getElementById('button').onclick = function() {
            try {
                alert("document.domain: " + window.document.domain);
            } catch(e) {
            }
        }

        window.location = "http://localhost:8000/security/resources/cross-frame-iframe.html";
    </script> 
</body>
</html>