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

Unified Diff: tracing/tracing/ui/tracks/slice_group_track_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/ui/tracks/slice_group_track_test.html
diff --git a/tracing/tracing/ui/tracks/slice_group_track_test.html b/tracing/tracing/ui/tracks/slice_group_track_test.html
index 2fbad51f5f1bbcd1786fc4ae06e3c289d7e9d6fa..fa5f75fad5774e029e96fb42cfd2703c4c3ee27d 100644
--- a/tracing/tracing/ui/tracks/slice_group_track_test.html
+++ b/tracing/tracing/ui/tracks/slice_group_track_test.html
@@ -163,7 +163,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