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

Unified Diff: tracing/tracing/core/test_utils.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/core/test_utils.html
diff --git a/tracing/tracing/core/test_utils.html b/tracing/tracing/core/test_utils.html
index f349f8efdea4a813532fabc96012e4b4a0309eb3..27654041438f8bc7d159884024d4b08f56114b4d 100644
--- a/tracing/tracing/core/test_utils.html
+++ b/tracing/tracing/core/test_utils.html
@@ -286,7 +286,7 @@ tr.exportTo('tr.c', function() {
if (slices instanceof tr.model.SliceGroup)
slices = slices.slices;
for (var i = 0; i < slices.length; i++)
- if (slices[i].title == name)
+ if (slices[i].title === name)
return slices[i];
return undefined;
};

Powered by Google App Engine
This is Rietveld 408576698