| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |