| Index: Source/devtools/front_end/timeline/TracingTimelineUIUtils.js
|
| diff --git a/Source/devtools/front_end/timeline/TracingTimelineUIUtils.js b/Source/devtools/front_end/timeline/TracingTimelineUIUtils.js
|
| index 871422764267b2c3669357dd5459b530a1148920..807dc5fb1f3c3bd8c8a8c74bc8cb1117ce80e6c8 100644
|
| --- a/Source/devtools/front_end/timeline/TracingTimelineUIUtils.js
|
| +++ b/Source/devtools/front_end/timeline/TracingTimelineUIUtils.js
|
| @@ -629,6 +629,8 @@ WebInspector.TracingTimelineUIUtils._buildTraceEventDetailsSynchronously = funct
|
| contentHelper.appendTextRow(WebInspector.UIString("Layout tree size"), beginData["totalObjects"]);
|
| contentHelper.appendTextRow(WebInspector.UIString("Layout scope"),
|
| beginData["partialLayout"] ? WebInspector.UIString("Partial") : WebInspector.UIString("Whole document"));
|
| + contentHelper.appendTextRow(WebInspector.UIString("Invalidation reasons"),
|
| + event.invalidations ? WebInspector.UIString(event.invalidations) : WebInspector.UIString("Unknown"));
|
| callSiteStackTraceLabel = WebInspector.UIString("Layout invalidated");
|
| callStackLabel = WebInspector.UIString("Layout forced");
|
| relatedNodeLabel = WebInspector.UIString("Layout root");
|
|
|