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

Unified Diff: LayoutTests/perf/append-text-nodes-without-renderers.html

Issue 1149253002: Remove LayoutTests/perf and associated references (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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/append-text-nodes-without-renderers.html
diff --git a/LayoutTests/perf/append-text-nodes-without-renderers.html b/LayoutTests/perf/append-text-nodes-without-renderers.html
deleted file mode 100644
index 78970f183167415adf1bf4dce32396c78884de3a..0000000000000000000000000000000000000000
--- a/LayoutTests/perf/append-text-nodes-without-renderers.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
-<body>
-<script src="../resources/magnitude-perf.js"></script>
-<script>
-function setupFunction(magnitude)
-{
-}
-
-function test(magnitude)
-{
- for (var i = 0; i < magnitude; i++) {
- document.body.appendChild(document.createTextNode(' '));
- document.body.appendChild(document.createElement('div'));
- document.body.appendChild(document.createTextNode(' '));
- }
- document.body.innerHTML = "";
-}
-
-Magnitude.description("Tests that style recalculation time is linear when adding text nodes that do not have renderers. See https://bugs.webkit.org/show_bug.cgi?id=110786");
-Magnitude.initialExponent = 9;
-Magnitude.numPoints = 7;
-// Extremely noisy
-Magnitude.numTrials = 5;
-Magnitude.successThreshold = 0.20; // 1 out of 5
-Magnitude.tolerance = 0.50;
-Magnitude.trim = 2;
-Magnitude.run(setupFunction, test, Magnitude.LINEAR);
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698