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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js

Issue 2160303002: Fix file manager labels and aria role. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: m Created 4 years, 4 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview Provides output services for ChromeVox. 6 * @fileoverview Provides output services for ChromeVox.
7 */ 7 */
8 8
9 goog.provide('Output'); 9 goog.provide('Output');
10 goog.provide('Output.EventType'); 10 goog.provide('Output.EventType');
(...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 }, 536 },
537 toolbar: { 537 toolbar: {
538 enter: '$name $role $description' 538 enter: '$name $role $description'
539 }, 539 },
540 tree: { 540 tree: {
541 enter: '$name $role @@list_with_items($countChildren(treeItem))' 541 enter: '$name $role @@list_with_items($countChildren(treeItem))'
542 }, 542 },
543 treeItem: { 543 treeItem: {
544 enter: '$role $expanded $collapsed ' + 544 enter: '$role $expanded $collapsed ' +
545 '@describe_index($indexInParent, $parentChildCount) ' + 545 '@describe_index($indexInParent, $parentChildCount) ' +
546 '@describe_depth($hierarchicalLevel)',
547 speak: '$name ' +
548 '$role $expanded $collapsed ' +
549 '@describe_index($indexInParent, $parentChildCount) ' +
546 '@describe_depth($hierarchicalLevel)' 550 '@describe_depth($hierarchicalLevel)'
547 }, 551 },
548 window: { 552 window: {
549 enter: '@describe_window($name)', 553 enter: '@describe_window($name)',
550 speak: '@describe_window($name) $earcon(OBJECT_OPEN)' 554 speak: '@describe_window($name) $earcon(OBJECT_OPEN)'
551 } 555 }
552 }, 556 },
553 menuStart: { 557 menuStart: {
554 'default': { 558 'default': {
555 speak: '@chrome_menu_opened($name) $earcon(OBJECT_OPEN)' 559 speak: '@chrome_menu_opened($name) $earcon(OBJECT_OPEN)'
(...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after
1643 break; 1647 break;
1644 } 1648 }
1645 earconFinder = earconFinder.parent; 1649 earconFinder = earconFinder.parent;
1646 } 1650 }
1647 } 1651 }
1648 return null; 1652 return null;
1649 } 1653 }
1650 }; 1654 };
1651 1655
1652 }); // goog.scope 1656 }); // goog.scope
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698