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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/cursor.js

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (Closed)
Patch Set: Created 3 years, 6 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: chrome/browser/resources/chromeos/chromevox/common/cursor.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/cursor.js b/chrome/browser/resources/chromeos/chromevox/common/cursor.js
index 1cf59633647df1c9b10cc896bff3eea75be81528..223c10f71d84c0a9dfe0dc5266f1053d946c372d 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/cursor.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/cursor.js
@@ -53,7 +53,6 @@ cvox.Cursor.prototype.copyFrom = function(otherCursor) {
* @return {boolean} True if equal.
*/
cvox.Cursor.prototype.equals = function(rhs) {
- return this.node == rhs.node &&
- this.index == rhs.index &&
+ return this.node == rhs.node && this.index == rhs.index &&
this.text == rhs.text;
};

Powered by Google App Engine
This is Rietveld 408576698