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

Unified Diff: tracing/tracing/ui/timeline_track_view_test.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
« no previous file with comments | « tracing/tracing/ui/timeline_track_view.html ('k') | tracing/tracing/ui/timeline_view.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/ui/timeline_track_view_test.html
diff --git a/tracing/tracing/ui/timeline_track_view_test.html b/tracing/tracing/ui/timeline_track_view_test.html
index fa50652e28fa83b8444fd5128037b9f6b1f2dfd4..3c026b86718a6e0df8af25c2c79c944d0654d758 100644
--- a/tracing/tracing/ui/timeline_track_view_test.html
+++ b/tracing/tracing/ui/timeline_track_view_test.html
@@ -28,7 +28,7 @@ tr.b.unittest.testSuite(function() {
var p100 = model.getOrCreateProcess(100);
for (var i = 0; i < numThreads; i++) {
var t = p100.getOrCreateThread(101 + i);
- if (i % 2 == 0) {
+ if (i % 2 === 0) {
t.sliceGroup.beginSlice('cat', 'a', 100);
t.sliceGroup.endSlice(110);
} else {
« no previous file with comments | « tracing/tracing/ui/timeline_track_view.html ('k') | tracing/tracing/ui/timeline_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698