WebCore/manual-tests/test-iframes-loading-the-same-resource.html
changeset 0 4f2f89ce4247
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebCore/manual-tests/test-iframes-loading-the-same-resource.html	Fri Sep 17 09:02:29 2010 +0300
@@ -0,0 +1,19 @@
+<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>