Index: LayoutTests/perf/svg-path-appenditem.html |
diff --git a/LayoutTests/perf/svg-path-appenditem.html b/LayoutTests/perf/svg-path-appenditem.html |
deleted file mode 100644 |
index 212fc413ef234ec8f01275c8d4b23cd7fb7b41b5..0000000000000000000000000000000000000000 |
--- a/LayoutTests/perf/svg-path-appenditem.html |
+++ /dev/null |
@@ -1,25 +0,0 @@ |
-<body> |
-<script src="../resources/magnitude-perf.js"></script> |
-<script> |
- var path; |
- |
- function setup(magnitude) |
- { |
- path = document.createElementNS("http://www.w3.org/2000/svg", "path"); |
- var pathD = ""; |
- for (var i = 0; i < magnitude; i++) |
- pathD += "M20 20Z"; |
- path.setAttribute('d', pathD); |
- } |
- |
- function test(magnitude) |
- { |
- path.pathSegList.appendItem(path.createSVGPathSegLinetoAbs(20, 20)); |
- } |
- |
- Magnitude.description("Tests that SVG path.appendItem() is constant with respect to the length of the path."); |
- Magnitude.tolerance = 0.60; |
- Magnitude.trim = 2; |
- Magnitude.run(setup, test, Magnitude.CONSTANT); |
-</script> |
-</body> |