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

Unified Diff: tracing/tracing/model/slice_group_test.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/model/slice_group_test.html
diff --git a/tracing/tracing/model/slice_group_test.html b/tracing/tracing/model/slice_group_test.html
index 9816ec019a49c22e52368ed01fc2b8b02f952c82..f6aaa7eb5dca0a8f69c609b927460a99f2c77579 100644
--- a/tracing/tracing/model/slice_group_test.html
+++ b/tracing/tracing/model/slice_group_test.html
@@ -182,7 +182,7 @@ tr.b.unittest.testSuite(function() {
// Pattern being tested:
// [ a ]
- // [ b1 ] []<- b2 where b2.duration = 0 and b2.end == a.end.
+ // [ b1 ] []<- b2 where b2.duration = 0 and b2.end === a.end.
var sA = group.pushSlice(newSliceEx({title: 'a', start: 1, duration: 3}));
var sB1 = group.pushSlice(newSliceEx({title: 'b1', start: 1, duration: 2}));
var sB2 = group.pushSlice(newSliceEx({title: 'b2', start: 4, duration: 0}));

Powered by Google App Engine
This is Rietveld 408576698