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

Unified Diff: tracing/tracing/ui/analysis/stub_analysis_table.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/analysis/stub_analysis_table.html
diff --git a/tracing/tracing/ui/analysis/stub_analysis_table.html b/tracing/tracing/ui/analysis/stub_analysis_table.html
index c08278c9b447f4d1f0eccf6b4ba222665a675413..b606d1736a1fb4890f040701f504939d92ce2e67 100644
--- a/tracing/tracing/ui/analysis/stub_analysis_table.html
+++ b/tracing/tracing/ui/analysis/stub_analysis_table.html
@@ -23,8 +23,8 @@ tr.exportTo('tr.ui.analysis', function() {
},
appendChild: function(node) {
- if (node.tagName == 'TFOOT' || node.tagName == 'THEAD' ||
- node.tagName == 'TBODY') {
+ if (node.tagName === 'TFOOT' || node.tagName === 'THEAD' ||
+ node.tagName === 'TBODY') {
node.__proto__ = StubAnalysisTable.prototype;
node.nodes_ = [];
node.ownerDocument_ = document;
« no previous file with comments | « tracing/tracing/ui/analysis/single_power_sample_sub_view.html ('k') | tracing/tracing/ui/base/bar_chart_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698