Index: LayoutTests/perf/htmlcollection-backwards-iteration.html |
diff --git a/LayoutTests/perf/htmlcollection-backwards-iteration.html b/LayoutTests/perf/htmlcollection-backwards-iteration.html |
deleted file mode 100644 |
index 6b83db9cc34e67dd1bae6789e6bc4eb294aa4bad..0000000000000000000000000000000000000000 |
--- a/LayoutTests/perf/htmlcollection-backwards-iteration.html |
+++ /dev/null |
@@ -1,33 +0,0 @@ |
-<!DOCTYPE html> |
-<body> |
-<div id="container" style="display: none;"></div> |
-<script src="../resources/magnitude-perf.js"></script> |
-<script> |
- |
-var container = document.getElementById('container'); |
- |
-function setupFunction(magnitude) |
-{ |
- container.innerHTML = ''; |
- for (var i = 0; i < magnitude; i++) |
- container.appendChild(document.createElement('div')); |
-} |
- |
-function test(magnitude) |
-{ |
- var children = container.children; |
- for (var i = children.length; i > 0;i--) |
- children[i - 1].class = 'hi'; |
-} |
- |
-Magnitude.description("Tests that iterating over HTMLCollection backwards is linear."); |
-Magnitude.initialExponent = 9; |
-Magnitude.numPoints = 6; |
-Magnitude.numTrials = 5; |
-Magnitude.successThreshold = 0.20; // 2 out of 5 |
-Magnitude.tolerance = 0.30; |
-Magnitude.trim = 1; |
-Magnitude.run(setupFunction, test, Magnitude.LINEAR); |
-</script> |
-</body> |
-</html> |