Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2910)

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/next_keymap.json

Issue 2132123002: Complete table support in ChromeVox Next. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ignore some roles. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/next_keymap.json
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/next_keymap.json b/chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/next_keymap.json
index 8349b199a5ff61aaf0e99ec3bb12f4fdc0fdceed..fa05a5899904bb0c3949694f5cd12ea1ef7a96c4 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/next_keymap.json
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/next_keymap.json
@@ -570,6 +570,123 @@
"keyCode": [65, 66]
}
}
+ },
+ {
+ "command": "fullyDescribe",
+ "sequence": {
+ "cvoxModifier": true,
+ "keys": {
+ "keyCode": [75]
+ }
+ }
+ },
+ {
+ "command": "previousRow",
+ "sequence": {
+ "keys": {
+ "keyCode": [38],
+ "ctrlKey": [true],
dmazzoni 2016/07/13 23:38:28 Does it work to have ChromeVox shortcuts that don'
David Tseng 2016/07/14 20:24:41 ChromeVox gets everything. The special behavior wi
+ "altKey": [true]
+ }
+ }
+ },
+ {
+ "command": "nextRow",
+ "sequence": {
+ "keys": {
+ "keyCode": [40],
+ "ctrlKey": [true],
+ "altKey": [true]
+ }
+ }
+ },
+ {
+ "command": "nextCol",
+ "sequence": {
+ "keys": {
+ "keyCode": [39],
+ "ctrlKey": [true],
+ "altKey": [true]
+ }
+ }
+ },
+ {
+ "command": "previousCol",
+ "sequence": {
+ "keys": {
+ "keyCode": [37],
+ "ctrlKey": [true],
+ "altKey": [true]
+ }
+ }
+ },
+ {
+ "command": "goToRowFirstCell",
+ "sequence": {
+ "keys": {
+ "keyCode": [37],
+ "ctrlKey": [true],
+ "altKey": [true],
+ "shiftKey": [true]
+ }
+ }
+ },
+ {
+ "command": "goToColFirstCell",
+ "sequence": {
+ "keys": {
+ "keyCode": [38],
+ "ctrlKey": [true],
+ "altKey": [true],
+ "shiftKey": [true]
+ }
+ }
+ },
+ {
+ "command": "goToColLastCell",
+ "sequence": {
+ "keys": {
+ "keyCode": [40],
+ "ctrlKey": [true],
+ "altKey": [true],
+ "shiftKey": [true]
+ }
+ }
+ },
+ {
+ "command": "goToFirstCell",
+ "sequence": {
+ "keys": {
+ "keyCode": [37],
+ "ctrlKey": [true],
+ "altKey": [true],
+ "shiftKey": [true],
+ "metaKey": [true]
+ }
+ }
+ },
+ {
+ "command": "goToLastCell",
+ "sequence": {
+ "keys": {
+ "keyCode": [39],
+ "ctrlKey": [true],
+ "altKey": [true],
+ "shiftKey": [true],
+ " metaKey": [true]
+ }
+ }
+ },
+ {
+ "command": "goToRowLastCell",
+ "sequence": {
+ "keys": {
+ "keyCode": [39],
+ "ctrlKey": [true],
+ "altKey": [true],
+ "shiftKey": [true]
+ }
+ }
}
]
}

Powered by Google App Engine
This is Rietveld 408576698