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

Unified Diff: LayoutTests/perf/table-rows-length-caching.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/table-rows-length-caching.html
diff --git a/LayoutTests/perf/table-rows-length-caching.html b/LayoutTests/perf/table-rows-length-caching.html
deleted file mode 100644
index 58cf4d99c6f5dacf15a8489f5a1740c851a9f663..0000000000000000000000000000000000000000
--- a/LayoutTests/perf/table-rows-length-caching.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<div id='sandbox'></div>
-<div id="console"></div>
-<script src="../resources/magnitude-perf.js"></script>
-<script>
-
-if (window.testRunner)
- testRunner.dumpAsText();
-
-var table;
-var sandbox = document.getElementById('sandbox');
-
-// Check that table.rows.length is properly cached.
-
-function setupTableRows(magnitude)
-{
- if (sandbox.firstChild)
- sandbox.removeChild(sandbox.firstChild);
- table = document.createElement('table');
-
- for (var i = 0; i < magnitude; ++i) {
- var tr = document.createElement('tr');
- table.appendChild(tr);
- }
- sandbox.appendChild(table);
-
- // Make sure we have cached the length before testing!
- table.rows.length;
-}
-
-function testTableRows(magnitude)
-{
- table.rows.length;
-}
-
-Magnitude.description('Tests that check that table.row.length is properly cached');
-// Quite noisy
-Magnitude.numTrials = 5;
-Magnitude.successThreshold = 0.40; // 2 out of 5
-Magnitude.tolerance = 0.30;
-Magnitude.trim = 2;
-Magnitude.run(setupTableRows, testTableRows, Magnitude.CONSTANT);
-sandbox.removeChild(sandbox.firstChild);
-</script>
-</body>
-</html>
« no previous file with comments | « LayoutTests/perf/svg-path-appenditem-expected.txt ('k') | LayoutTests/perf/table-rows-length-caching-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698