Index: LayoutTests/inspector/tracing/timeline-js-callstacks.html |
diff --git a/LayoutTests/inspector/tracing/timeline-js-callstacks.html b/LayoutTests/inspector/tracing/timeline-js-callstacks.html |
index 22108595fa2491e0c06e3dc3b621a5fa7e8bbd24..4559d41fb902f9b3e5a3fc705a3372b37468017d 100644 |
--- a/LayoutTests/inspector/tracing/timeline-js-callstacks.html |
+++ b/LayoutTests/inspector/tracing/timeline-js-callstacks.html |
@@ -400,7 +400,7 @@ function test() |
function printProfileTree(padding, node) |
{ |
- InspectorTest.addResult(" ".repeat(padding) + node.name + ": " + node.totalTime.toFixed(3)); |
+ InspectorTest.addResult(" ".repeat(padding) + node.name + ": " + [node.selfTime, node.totalTime].map(function (t) { return t.toFixed(3); }).join(" ")); |
(node.children || new Map()).forEach(printProfileTree.bind(null, padding + 1)); |
} |