| Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/cursors_test.extjs
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/cursors_test.extjs b/chrome/browser/resources/chromeos/chromevox/cvox2/background/cursors_test.extjs
|
| index 6a0affb6023a56a0a9bb03cd36721db06b5cd6d7..090e757e721a8e7a80abc387182aa1170b0a846e 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/cursors_test.extjs
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/cursors_test.extjs
|
| @@ -73,8 +73,8 @@ CursorsTest.prototype = {
|
| var expectedStart = move[2];
|
| var expectedEnd = move[3];
|
|
|
| - this.makeCursorAssertion(expectedStart, range.getStart());
|
| - this.makeCursorAssertion(expectedEnd, range.getEnd());
|
| + this.makeCursorAssertion(expectedStart, range.start);
|
| + this.makeCursorAssertion(expectedEnd, range.end);
|
| }
|
| },
|
|
|
| @@ -87,7 +87,7 @@ CursorsTest.prototype = {
|
| if (goog.isDef(expected.index))
|
| assertEquals(expected.index, cursor.getIndex());
|
| if (goog.isDef(expected.value))
|
| - assertEquals(expected.value, cursor.getNode().value);
|
| + assertEquals(expected.value, cursor.node.value);
|
| },
|
|
|
| /**
|
|
|