| Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/i_search.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/i_search.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/i_search.js
|
| index b2194202230c8b334f0fe5d4d936f3afcb9f43c8..1ccffac9f7f98517f013a8338a82fd9e409981b5 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/i_search.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/i_search.js
|
| @@ -147,14 +147,14 @@ ISearchUI.prototype = {
|
| * @return {boolean}
|
| */
|
| onKeyDown: function(evt) {
|
| - switch (evt.keyIdentifier) {
|
| - case 'Up':
|
| + switch (evt.key) {
|
| + case 'ArrowUp':
|
| this.dir_ = Dir.BACKWARD;
|
| break;
|
| - case 'Down':
|
| + case 'ArrowDown':
|
| this.dir_ = Dir.FORWARD;
|
| break;
|
| - case 'U+001B': // Escape
|
| + case 'Escape':
|
| this.pendingSearchId_ = 0;
|
| this.background_['endExcursion']();
|
| Panel.closeMenusAndRestoreFocus();
|
|
|