Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Unified Diff: tracing/tracing/ui/extras/chrome/cc/raster_task_view.html

Issue 2390373003: Change all == to === and != to !== in trace viewer. (Closed)
Patch Set: more changes from code review Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tracing/tracing/ui/extras/chrome/cc/raster_task_view.html
diff --git a/tracing/tracing/ui/extras/chrome/cc/raster_task_view.html b/tracing/tracing/ui/extras/chrome/cc/raster_task_view.html
index 8d5720505e23ade184a67f10ecdc89c0cb1a89a9..7ab2cbda14bc2cdd1d1ec482524d05956b37d11c 100644
--- a/tracing/tracing/ui/extras/chrome/cc/raster_task_view.html
+++ b/tracing/tracing/ui/extras/chrome/cc/raster_task_view.html
@@ -113,7 +113,7 @@ Polymer({
}
var colWidthPercentage;
- if (columns.length == 1)
+ if (columns.length === 1)
colWidthPercentage = '100%';
else
colWidthPercentage = (100 / (columns.length - 1)).toFixed(3) + '%';

Powered by Google App Engine
This is Rietveld 408576698