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

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

Issue 2042083002: Add role lists to ChromeVox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "bindings": [ 2 "bindings": [
3 { 3 {
4 "command": "previousObject", 4 "command": "previousObject",
5 "sequence": { 5 "sequence": {
6 "cvoxModifier": true, 6 "cvoxModifier": true,
7 "keys": { 7 "keys": {
8 "keyCode": [37] 8 "keyCode": [37]
9 } 9 }
10 } 10 }
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 "command": "passThroughMode", 344 "command": "passThroughMode",
345 "sequence": { 345 "sequence": {
346 "cvoxModifier": true, 346 "cvoxModifier": true,
347 "keys": { 347 "keys": {
348 "keyCode": [27], 348 "keyCode": [27],
349 "shiftKey": [true] 349 "shiftKey": [true]
350 } 350 }
351 } 351 }
352 }, 352 },
353 { 353 {
354 "command": "openChromeVoxMenus", 354 "command": "toggleKeyboardHelp",
355 "sequence": { 355 "sequence": {
356 "cvoxModifier": true, 356 "cvoxModifier": true,
357 "keys": { 357 "keys": {
358 "keyCode": [190] 358 "keyCode": [190]
359 } 359 }
360 } 360 }
361 }, 361 },
362 { 362 {
363 "command": "stopSpeech", 363 "command": "stopSpeech",
364 "sequence": { 364 "sequence": {
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 "keys": { 492 "keys": {
493 "keyCode": [65, 73] 493 "keyCode": [65, 73]
494 } 494 }
495 } 495 }
496 }, 496 },
497 { 497 {
498 "command": "toggleSearchWidget", 498 "command": "toggleSearchWidget",
499 "sequence": { 499 "sequence": {
500 "cvoxModifier": true, 500 "cvoxModifier": true,
501 "keys": { 501 "keys": {
502 "keyCode": [191]
503 }
504 }
505 },
506 {
507 "command": "showHeadingsList",
508 "sequence": {
509 "cvoxModifier": true,
510 "keys": {
511 "keyCode": [72],
512 "ctrlKey": [true]
513 }
514 }
515 },
516 {
517 "command": "showFormsList",
518 "sequence": {
519 "cvoxModifier": true,
520 "keys": {
502 "keyCode": [70], 521 "keyCode": [70],
503 "ctrlKey": [true] 522 "ctrlKey": [true]
504 } 523 }
505 } 524 }
525 },
526 {
527 "command": "showLandmarksList",
528 "sequence": {
529 "cvoxModifier": true,
530 "keys": {
531 "keyCode": [186],
532 "ctrlKey": [true]
533 }
534 }
535 },
536 {
537 "command": "showLinksList",
538 "sequence": {
539 "cvoxModifier": true,
540 "keys": {
541 "keyCode": [76],
542 "ctrlKey": [true]
543 }
544 }
545 },
546 {
547 "command": "showTablesList",
548 "sequence": {
549 "cvoxModifier": true,
550 "keys": {
551 "keyCode": [84],
552 "ctrlKey": [true]
553 }
554 }
506 } 555 }
507 ] 556 ]
508 } 557 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698