| 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 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 }, | 522 }, |
| 523 tree: { | 523 tree: { |
| 524 enter: '$name $role @@list_with_items($countChildren(treeItem))' | 524 enter: '$name $role @@list_with_items($countChildren(treeItem))' |
| 525 }, | 525 }, |
| 526 treeItem: { | 526 treeItem: { |
| 527 enter: '$role $expanded $collapsed ' + | 527 enter: '$role $expanded $collapsed ' + |
| 528 '@describe_index($indexInParent, $parentChildCount) ' + | 528 '@describe_index($indexInParent, $parentChildCount) ' + |
| 529 '@describe_depth($hierarchicalLevel)' | 529 '@describe_depth($hierarchicalLevel)' |
| 530 }, | 530 }, |
| 531 window: { | 531 window: { |
| 532 enter: '$name', | 532 enter: '@describe_window($name)', |
| 533 speak: '@describe_window($name) $earcon(OBJECT_OPEN)' | 533 speak: '@describe_window($name) $earcon(OBJECT_OPEN)' |
| 534 } | 534 } |
| 535 }, | 535 }, |
| 536 menuStart: { | 536 menuStart: { |
| 537 'default': { | 537 'default': { |
| 538 speak: '@chrome_menu_opened($name) $earcon(OBJECT_OPEN)' | 538 speak: '@chrome_menu_opened($name) $earcon(OBJECT_OPEN)' |
| 539 } | 539 } |
| 540 }, | 540 }, |
| 541 menuEnd: { | 541 menuEnd: { |
| 542 'default': { | 542 'default': { |
| (...skipping 1047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1590 break; | 1590 break; |
| 1591 } | 1591 } |
| 1592 earconFinder = earconFinder.parent; | 1592 earconFinder = earconFinder.parent; |
| 1593 } | 1593 } |
| 1594 } | 1594 } |
| 1595 return null; | 1595 return null; |
| 1596 } | 1596 } |
| 1597 }; | 1597 }; |
| 1598 | 1598 |
| 1599 }); // goog.scope | 1599 }); // goog.scope |
| OLD | NEW |