Commit e49e995e authored by caseq's avatar caseq Committed by Commit bot

Timeline: re-expose the total size of layout tree in details

... originally removed by https://codereview.chromium.org/1514483002

BUG=627875

Review-Url: https://codereview.chromium.org/2150653002
Cr-Commit-Position: refs/heads/master@{#405255}
parent 02b8e188
...@@ -803,7 +803,7 @@ WebInspector.TimelineUIUtils._buildTraceEventDetailsSynchronously = function(eve ...@@ -803,7 +803,7 @@ WebInspector.TimelineUIUtils._buildTraceEventDetailsSynchronously = function(eve
break; break;
case recordTypes.Layout: case recordTypes.Layout:
var beginData = event.args["beginData"]; var beginData = event.args["beginData"];
contentHelper.appendTextRow(WebInspector.UIString("Nodes That Need Layout"), beginData["dirtyObjects"]); contentHelper.appendTextRow(WebInspector.UIString("Nodes That Need Layout"), WebInspector.UIString("%s of %s", beginData["dirtyObjects"], beginData["totalObjects"]));
relatedNodeLabel = WebInspector.UIString("Layout root"); relatedNodeLabel = WebInspector.UIString("Layout root");
break; break;
case recordTypes.ConsoleTime: case recordTypes.ConsoleTime:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment