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

Unified Diff: tracing/tracing/ui/extras/chrome/cc/display_item_debugger.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/display_item_debugger.html
diff --git a/tracing/tracing/ui/extras/chrome/cc/display_item_debugger.html b/tracing/tracing/ui/extras/chrome/cc/display_item_debugger.html
index d96d517d2987d77044e05879b52c993304b9b07f..37403d8f7fdc08e92073e4c94b005a678aa0d435 100644
--- a/tracing/tracing/ui/extras/chrome/cc/display_item_debugger.html
+++ b/tracing/tracing/ui/extras/chrome/cc/display_item_debugger.html
@@ -353,7 +353,7 @@ tr.exportTo('tr.ui.e.chrome.cc', function() {
},
onDisplayItemInfoClick_: function(e) {
- if (e && e.target == this.displayItemInfo_) {
+ if (e && e.target === this.displayItemInfo_) {
this.displayItemListView_.selectedElement = undefined;
}
},

Powered by Google App Engine
This is Rietveld 408576698