summaryrefslogtreecommitdiffstats
path: root/WebCore/manual-tests/test-iframes-loading-the-same-resource.html
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:41 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:41 -0800
commit648161bb0edfc3d43db63caed5cc5213bc6cb78f (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /WebCore/manual-tests/test-iframes-loading-the-same-resource.html
parenta65af38181ac7d34544586bdb5cd004de93897ad (diff)
downloadexternal_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.zip
external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.gz
external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.bz2
auto import from //depot/cupcake/@135843
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>