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(); |
} |