summaryrefslogtreecommitdiffstats
path: root/WebCore/manual-tests/test-iframes-loading-the-same-resource.html
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/manual-tests/test-iframes-loading-the-same-resource.html')
-rw-r--r--WebCore/manual-tests/test-iframes-loading-the-same-resource.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/WebCore/manual-tests/test-iframes-loading-the-same-resource.html b/WebCore/manual-tests/test-iframes-loading-the-same-resource.html
deleted file mode 100644
index 462db02..0000000
--- a/WebCore/manual-tests/test-iframes-loading-the-same-resource.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<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>