| 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;
|
| };
|
|
|