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

Unified Diff: third_party/WebKit/PerformanceTests/TestData/append-child-measure-time.html

Issue 2844873002: Revert of Support tracing metrics for measureTime & measureFrameTime method in blink_perf (Closed)
Patch Set: Created 3 years, 8 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 | « no previous file | third_party/WebKit/PerformanceTests/TestData/color-changes-measure-frame-time.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/PerformanceTests/TestData/append-child-measure-time.html
diff --git a/third_party/WebKit/PerformanceTests/TestData/append-child-measure-time.html b/third_party/WebKit/PerformanceTests/TestData/append-child-measure-time.html
deleted file mode 100644
index 99491ef60248f885de72058027e3f4b65db47a0f..0000000000000000000000000000000000000000
--- a/third_party/WebKit/PerformanceTests/TestData/append-child-measure-time.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
- <div id="holder">
- </div>
-<script src="../resources/runner.js"></script>
-</script>
-<script>
-var holderElement = document.getElementById("holder");
-
-PerfTestRunner.measureTime({
- description: "Measures performance of layout when adding many child elements.",
-
- setup: function() {
- while (holderElement.firstChild) {
- holderElement.removeChild(holderElement.firstChild);
- }
- },
-
- run: function() {
- for (var i = 0; i < 50; ++i) {
- var element = document.createElement("div");
- element.title = 'dummy';
- element.innerText = "FOO";
- holderElement.appendChild(element);
- PerfTestRunner.forceLayout();
- }
- },
- warmUpCount: 3,
- iterationCount: 10,
- tracingCategories: 'blink',
- traceEventsToMeasure: ['FrameView::layout', 'UpdateLayoutTree']
-});
-</script>
-</body>
-</html>
« no previous file with comments | « no previous file | third_party/WebKit/PerformanceTests/TestData/color-changes-measure-frame-time.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698