WebCore/manual-tests/test-iframes-loading-the-same-resource.html
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 17 Sep 2010 09:02:29 +0300
changeset 0 4f2f89ce4247
permissions -rw-r--r--
Revision: 201037

<html>
<head>
<script>
    setTimeout('document.getElementById("frame2").src = "resources/test-frame.html";', 100);
    loadCount = 0
    function frame2Loaded() {
        if (loadCount < 40) {
            setTimeout('document.getElementById("frame2").src = "resources/test-frame.html?'+loadCount+'";', 100);
            loadCount++;
        } 
    }
</script>
</head>
<body>
    To perform this test attempt to drag one of the apple images in the left frame while the right frame is doing loads.  This test is not entirely deterministic so it should be attempted a number of times. <br />
<iframe id="frame1" src="resources/test-frame.html"></iframe>
<iframe id="frame2" onload="frame2Loaded();"></iframe>
</body>
</html>