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

Unified Diff: LayoutTests/perf/object-keys.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
« no previous file with comments | « LayoutTests/perf/mouse-event-expected.txt ('k') | LayoutTests/perf/object-keys-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/perf/object-keys.html
diff --git a/LayoutTests/perf/object-keys.html b/LayoutTests/perf/object-keys.html
deleted file mode 100644
index a33506f0266814160f0b2421da9f5d34fe9389d7..0000000000000000000000000000000000000000
--- a/LayoutTests/perf/object-keys.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<script src="../resources/magnitude-perf.js"></script>
-<script>
-function setupFunction(magnitude)
-{
- obj = {};
- for (var i = 0; i < magnitude; i++) {
- obj[i] = i;
- }
-}
-
-function test(magnitude)
-{
- Object.keys(obj);
-}
-
-Magnitude.description("Tests that Object.keys is linear.");
-Magnitude.numTrials = 5; // pretty noisy
-Magnitude.successThreshold = 0.40; // 2 out of 5
-Magnitude.initialExponent = 9;
-Magnitude.numPoints = 5;
-Magnitude.tolerance = 0.25; // 5%-25% deviations not uncommon
-Magnitude.trim = 1;
-Magnitude.run(setupFunction, test, Magnitude.LINEAR);
-</script>
« no previous file with comments | « LayoutTests/perf/mouse-event-expected.txt ('k') | LayoutTests/perf/object-keys-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698