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] |
+ } |
+ } |
} |
] |
} |