| 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 f3b180ff16d009fcbb58e6cd813c68124f1ffed0..7f9139a31898d9d467d150845affdb79db4ea794 100644
|
| --- a/Source/devtools/front_end/timeline/TracingTimelineUIUtils.js
|
| +++ b/Source/devtools/front_end/timeline/TracingTimelineUIUtils.js
|
| @@ -817,10 +817,7 @@ WebInspector.TracingTimelineUIUtils._generateInvalidationsForType = function(typ
|
| if (invalidation.reason) {
|
| var reasonRow = row.createChild("div");
|
| var reason = invalidation.reason;
|
| - // We should clean up invalidation strings so they are consistent: crbug.com/424451.
|
| - if (!invalidation.reason.endsWith("."))
|
| - reason += ".";
|
| - reasonRow.textContent = WebInspector.UIString("Reason: %s", reason);
|
| + reasonRow.textContent = WebInspector.UIString("Reason: %s.", reason);
|
| }
|
|
|
| if (invalidation.stackTrace)
|
|
|