chromium/third_party/blink/web_tests/http/tests/security/cookies/cookie-theft-with-javascript-doc.html

<html>
<head>
<script>
if (window.testRunner) {
    testRunner.dumpAsText();
    testRunner.waitUntilDone();
    testRunner.setPopupBlockingEnabled(false);
    testRunner.setDumpConsoleMessages(false);
}

window.onload = function()
{
    frame = document.body.appendChild(document.createElement("iframe"));
    frame.src = "about:blank";
    frame.onload = function() {
        frame.onload = null;
        
        wnd = frame.contentWindow.open();
        frame.src = "http://localhost:8080/security/cookies/resources/innocent-victim-with-cookies.html";
        window.onmessage = function(e) {
            key = e.data;
            wnd.location = "javascript:('bar')";
            setTimeout(finishTest, 0);
        }
    }
}

function finishTest()
{
    document.body.textContent = wnd.document.cookie.indexOf(key) != -1 ? "FAILURE" : "SUCCESS";
    if (window.testRunner)
        testRunner.notifyDone();
}
</script>
</head>
<body>
</body>
</html>