| 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 date: { | 442 date: { |
| 443 enter: '$nameFromNode $role $description' | 443 enter: '$nameFromNode $role $description' |
| 444 }, | 444 }, |
| 445 dialog: { | 445 dialog: { |
| 446 enter: '$nameFromNode $role $description' | 446 enter: '$nameFromNode $role $description' |
| 447 }, | 447 }, |
| 448 div: { | 448 div: { |
| 449 enter: '$nameFromNode', | 449 enter: '$nameFromNode', |
| 450 speak: '$name $description $descendants' | 450 speak: '$name $description $descendants' |
| 451 }, | 451 }, |
| 452 embeddedObject: { |
| 453 speak: '$name' |
| 454 }, |
| 452 grid: { | 455 grid: { |
| 453 enter: '$nameFromNode $role $description' | 456 enter: '$nameFromNode $role $description' |
| 454 }, | 457 }, |
| 455 group: { | 458 group: { |
| 456 enter: '$nameFromNode $state $description', | 459 enter: '$nameFromNode $state $description', |
| 457 speak: '$nameOrDescendants $value $state $description', | 460 speak: '$nameOrDescendants $value $state $description', |
| 458 leave: '' | 461 leave: '' |
| 459 }, | 462 }, |
| 460 heading: { | 463 heading: { |
| 461 enter: '!relativePitch(hierarchicalLevel) ' + | 464 enter: '!relativePitch(hierarchicalLevel) ' + |
| (...skipping 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1730 /** | 1733 /** |
| 1731 * Gets the output buffer for braille. | 1734 * Gets the output buffer for braille. |
| 1732 * @return {!Spannable} | 1735 * @return {!Spannable} |
| 1733 */ | 1736 */ |
| 1734 get brailleOutputForTest() { | 1737 get brailleOutputForTest() { |
| 1735 return this.createBrailleOutput_(); | 1738 return this.createBrailleOutput_(); |
| 1736 } | 1739 } |
| 1737 }; | 1740 }; |
| 1738 | 1741 |
| 1739 }); // goog.scope | 1742 }); // goog.scope |
| OLD | NEW |