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

Side by Side 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, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <body>
2 <script src="../resources/magnitude-perf.js"></script>
3 <script>
4 var path;
5
6 function setup(magnitude)
7 {
8 path = document.createElementNS("http://www.w3.org/2000/svg", "path");
9 var pathD = "";
10 for (var i = 0; i < magnitude; i++)
11 pathD += "M20 20Z";
12 path.setAttribute('d', pathD);
13 }
14
15 function test(magnitude)
16 {
17 path.pathSegList.appendItem(path.createSVGPathSegLinetoAbs(20, 20));
18 }
19
20 Magnitude.description("Tests that SVG path.appendItem() is constant with res pect to the length of the path.");
21 Magnitude.tolerance = 0.60;
22 Magnitude.trim = 2;
23 Magnitude.run(setup, test, Magnitude.CONSTANT);
24 </script>
25 </body>
OLDNEW
« 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