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

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: Rebase. 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
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 bc7d3d0df724e590d530e366c2f5550764fea21d..c3cbc7af1940a3408bfd27013b4fa2a62cbfc1c5 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
@@ -581,6 +581,15 @@
}
},
{
+ "command": "fullyDescribe",
+ "sequence": {
+ "cvoxModifier": true,
+ "keys": {
+ "keyCode": [75]
+ }
+ }
+ },
+ {
"command": "copy",
"sequence": {
"keys": {
@@ -588,6 +597,120 @@
"ctrlKey": [true]
}
}
+ },
+ {
+ "command": "previousRow",
+ "sequence": {
+ "cvoxModifier": true,
+ "keys": {
+ "keyCode": [38],
+ "ctrlKey": [true],
+ "altKey": [true]
+ }
+ }
+ },
+ {
+ "command": "nextRow",
+ "sequence": {
+ "cvoxModifier": true,
+ "keys": {
+ "keyCode": [40],
+ "ctrlKey": [true],
+ "altKey": [true]
+ }
+ }
+ },
+ {
+ "command": "nextCol",
+ "sequence": {
+ "cvoxModifier": true,
+ "keys": {
+ "keyCode": [39],
+ "ctrlKey": [true],
+ "altKey": [true]
+ }
+ }
+ },
+ {
+ "command": "previousCol",
+ "sequence": {
+ "cvoxModifier": true,
+ "keys": {
+ "keyCode": [37],
+ "ctrlKey": [true],
+ "altKey": [true]
+ }
+ }
+ },
+ {
+ "command": "goToRowFirstCell",
+ "sequence": {
+ "cvoxModifier": true,
+ "keys": {
+ "keyCode": [37],
+ "ctrlKey": [true],
+ "altKey": [true],
+ "shiftKey": [true]
+ }
+ }
+ },
+ {
+ "command": "goToColFirstCell",
+ "sequence": {
+ "cvoxModifier": true,
+ "keys": {
+ "keyCode": [38],
+ "ctrlKey": [true],
+ "altKey": [true],
+ "shiftKey": [true]
+ }
+ }
+ },
+ {
+ "command": "goToColLastCell",
+ "sequence": {
+ "cvoxModifier": true,
+ "keys": {
+ "keyCode": [40],
+ "ctrlKey": [true],
+ "altKey": [true],
+ "shiftKey": [true]
+ }
+ }
+ },
+ {
+ "command": "goToFirstCell",
+ "sequence": {
+ "cvoxModifier": true,
+ "keys": {
+ "keyCode": [37],
+ "altKey": [true],
+ "shiftKey": [true]
+ }
+ }
+ },
+ {
+ "command": "goToLastCell",
+ "sequence": {
+ "cvoxModifier": true,
+ "keys": {
+ "keyCode": [39],
+ "altKey": [true],
+ "shiftKey": [true]
+ }
+ }
+ },
+ {
+ "command": "goToRowLastCell",
+ "sequence": {
+ "cvoxModifier": true,
+ "keys": {
+ "keyCode": [39],
+ "ctrlKey": [true],
+ "altKey": [true],
+ "shiftKey": [true]
+ }
+ }
}
]
}
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/common/chrome_extension_externs.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698