Index: LayoutTests/fast/frames/lots-of-objects.html |
diff --git a/LayoutTests/fast/frames/lots-of-objects.html b/LayoutTests/fast/frames/lots-of-objects.html |
deleted file mode 100644 |
index 21fe99576203799f28ce09ab759d48ff997b39fa..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/frames/lots-of-objects.html |
+++ /dev/null |
@@ -1,35 +0,0 @@ |
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
-<html> |
-<head> |
-<title>Lots of objects</title> |
-<script type="text/javascript"> |
- var maxNumberOfFrames = 1000; |
- |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
- var createdObjects = 0; |
- function count() { |
- createdObjects++; |
- |
- if (createdObjects == maxNumberOfFrames) { |
- var str = "Created precisely " + maxNumberOfFrames + " objects.<br>PASS"; |
- document.getElementById("status").innerHTML = str; |
- } else if (createdObjects > maxNumberOfFrames) { |
- var str = "Created " + createdObjects + " objects (max: " + maxNumberOfFrames + ").<br>FAIL"; |
- document.getElementById("status").innerHTML = str; |
- } |
- } |
- |
- function createObjects(nbr) { |
- var str = "<div id=\"status\"></div>"; |
- for (var i = 0; i < maxNumberOfFrames + 1; i++) { |
- str += "<object onLoad=\"count()\" data=\"data:text/html,object_" + i + "\"></object>"; |
- } |
- document.getElementsByTagName("body")[0].innerHTML = str; |
- } |
-</script> |
-</head> |
-<body onLoad="createObjects()"> |
-</body> |
-</html> |