Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Unified Diff: LayoutTests/perf/svg-path-appenditem.html

Issue 51383002: Delete perf tests that are WontFixed. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: try again Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>
« no previous file with comments | « LayoutTests/perf/show-hide-table-rows-expected.txt ('k') | LayoutTests/perf/svg-path-appenditem-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698