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

Unified Diff: tracing/tracing/ui/extras/chrome/cc/raster_task_selection_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
Index: tracing/tracing/ui/extras/chrome/cc/raster_task_selection_test.html
diff --git a/tracing/tracing/ui/extras/chrome/cc/raster_task_selection_test.html b/tracing/tracing/ui/extras/chrome/cc/raster_task_selection_test.html
index ee8e91c3c7712e018aa926bb03d9a771c95efb14..652bbc9b7cf945074efe8fc0adef7e81d8da9a79 100644
--- a/tracing/tracing/ui/extras/chrome/cc/raster_task_selection_test.html
+++ b/tracing/tracing/ui/extras/chrome/cc/raster_task_selection_test.html
@@ -23,7 +23,7 @@ tr.b.unittest.testSuite(function() {
var m = tr.c.TestUtils.newModelWithEvents([g_catLTHIEvents]);
var p = m.processes[1];
var rasterTasks = p.threads[1].sliceGroup.slices.filter(function(slice) {
- return slice.title == 'RasterTask';
+ return slice.title === 'RasterTask';
});
var selection = new tr.model.EventSet();

Powered by Google App Engine
This is Rietveld 408576698