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

Unified Diff: tracing/tracing/base/math.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/base/math.html
diff --git a/tracing/tracing/base/math.html b/tracing/tracing/base/math.html
index af14b237c3941b418096e58dbbc64426bfafc9ce..8480bbb7120b55c5644f15123f0e7fa32c82e6fe 100644
--- a/tracing/tracing/base/math.html
+++ b/tracing/tracing/base/math.html
@@ -93,7 +93,7 @@ tr.exportTo('tr.b', function() {
var tmpMat2d = mat2d.create();
vec2.createFromArray = function(arr) {
- if (arr.length != 2)
+ if (arr.length !== 2)
throw new Error('Should be length 2');
var v = vec2.create();
vec2.set(v, arr[0], arr[1]);

Powered by Google App Engine
This is Rietveld 408576698