| Index: chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.js b/chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.js
|
| index 98409b7d345c4e20f0524c6f1704bb759f512ecf..8ba377f2f1476df1116be145dfa55e3b61d72ae2 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.js
|
| @@ -53,7 +53,7 @@ cvox.TableShifter.prototype.next = function(sel) {
|
| cvox.TableShifter.prototype.sync = function(sel) {
|
| if (sel.start.node.tagName == 'TABLE') {
|
| return sel.isReversed() ? this.currentWalker_.goToLastCell(sel) :
|
| - this.currentWalker_.goToFirstCell(sel);
|
| + this.currentWalker_.goToFirstCell(sel);
|
| }
|
| return this.currentWalker_.sync(sel);
|
| };
|
| @@ -93,10 +93,8 @@ cvox.TableShifter.prototype.getDescription = function(prevSel, sel) {
|
| }));
|
| }
|
| if (this.currentWalker_.tt.isSpanned()) {
|
| - descs.push(new cvox.NavDescription({
|
| - text: '',
|
| - annotation: Msgs.getMsg('spanned')
|
| - }));
|
| + descs.push(new cvox.NavDescription(
|
| + {text: '', annotation: Msgs.getMsg('spanned')}));
|
| }
|
| this.begin_ = false;
|
| }
|
|
|