Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js |
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js |
index 4c04953b4c4de4423ef5c1fad28d83138dc4043f..e60b551bc167dd6184faa99fa5c7e8202b25399d 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js |
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js |
@@ -417,7 +417,8 @@ Background.prototype = { |
* @return {boolean} True if the default action should be performed. |
*/ |
onKeyDown: function(evt) { |
- if (!cvox.ChromeVoxKbHandler.basicKeyDownActionsListener(evt)) { |
+ if (this.mode_ != ChromeVoxMode.CLASSIC && |
+ !cvox.ChromeVoxKbHandler.basicKeyDownActionsListener(evt)) { |
evt.preventDefault(); |
evt.stopPropagation(); |
} |