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

Unified Diff: tracing/tracing/ui/extras/deep_reports/html_results.html

Issue 2390373003: Change all == to === and != to !== in trace viewer. (Closed)
Patch Set: 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/deep_reports/html_results.html
diff --git a/tracing/tracing/ui/extras/deep_reports/html_results.html b/tracing/tracing/ui/extras/deep_reports/html_results.html
index 593b1850a7e6af10d163de4c151d73e862eba279..2324a1d92149a5d3d72d708fa93d8fa12072ebd6 100644
--- a/tracing/tracing/ui/extras/deep_reports/html_results.html
+++ b/tracing/tracing/ui/extras/deep_reports/html_results.html
@@ -70,7 +70,7 @@ Polymer({
// Update widths.
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