WebCore/manual-tests/test-iframes-loading-the-same-resource.html
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 04 Oct 2010 01:32:07 +0300
changeset 2 303757a437d3
parent 0 4f2f89ce4247
permissions -rw-r--r--
Revision: 201037 Kit: 201039

<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>