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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/frame-model.html

Issue 2850193002: Timeline: fix frame offsets in Timeline details (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/LayoutTests/inspector/tracing/frame-model-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/tracing/frame-model.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/frame-model.html b/third_party/WebKit/LayoutTests/inspector/tracing/frame-model.html
index 59300dc0a3d21af1dd9db8e9ad7d49b51e5a924d..daece835a6e5dbb80721e0920213f9e2657453f1 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/frame-model.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/frame-model.html
@@ -280,7 +280,10 @@ function test()
var data = testData[testName];
var performanceModel = InspectorTest.createPerformanceModelWithEvents(commonMetadata.concat(data));
InspectorTest.addResult("Test: " + testName);
- performanceModel.frameModel().frames().forEach(InspectorTest.dumpFrame, InspectorTest);
+ for (var frame of performanceModel.frameModel().frames()) {
+ InspectorTest.addResult(Timeline.TimelineUIUtils.frameDuration(frame).textContent);
+ InspectorTest.dumpFrame(frame);
+ }
}
InspectorTest.completeTest();
}
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/tracing/frame-model-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698