WebCore/manual-tests/test-iframes-loading-the-same-resource.html
changeset 0 4f2f89ce4247
equal deleted inserted replaced
-1:000000000000 0:4f2f89ce4247
       
     1 <html>
       
     2 <head>
       
     3 <script>
       
     4     setTimeout('document.getElementById("frame2").src = "resources/test-frame.html";', 100);
       
     5     loadCount = 0
       
     6     function frame2Loaded() {
       
     7         if (loadCount < 40) {
       
     8             setTimeout('document.getElementById("frame2").src = "resources/test-frame.html?'+loadCount+'";', 100);
       
     9             loadCount++;
       
    10         } 
       
    11     }
       
    12 </script>
       
    13 </head>
       
    14 <body>
       
    15     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 />
       
    16 <iframe id="frame1" src="resources/test-frame.html"></iframe>
       
    17 <iframe id="frame2" onload="frame2Loaded();"></iframe>
       
    18 </body>
       
    19 </html>