chromium/third_party/blink/web_tests/http/tests/security/resources/cross-frame-iframe.html

<html>
<head>
    <script>
        function fireSentinel()
        {
            parent.postMessage("LOADED", "*");
        }
    </script>
</head>
<body onload="fireSentinel();">
    <p id='accessMe'></p>
    <p>Inner iframe.</p>
</body>
</html>