| 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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 braille: '' | 408 braille: '' |
| 409 }, | 409 }, |
| 410 abstractContainer: { | 410 abstractContainer: { |
| 411 enter: '$nameFromNode $role $description', | 411 enter: '$nameFromNode $role $description', |
| 412 leave: '@exited_container($role)' | 412 leave: '@exited_container($role)' |
| 413 }, | 413 }, |
| 414 alert: { | 414 alert: { |
| 415 speak: '!doNotInterrupt $role $descendants' | 415 speak: '!doNotInterrupt $role $descendants' |
| 416 }, | 416 }, |
| 417 alertDialog: { | 417 alertDialog: { |
| 418 enter: '$nameFromNode $role $description $descendants' | 418 enter: '$nameFromNode $role $description', |
| 419 speak: '$name $role $descendants' |
| 419 }, | 420 }, |
| 420 cell: { | 421 cell: { |
| 421 enter: '@column_granularity $tableCellColumnIndex' | 422 enter: '@column_granularity $tableCellColumnIndex' |
| 422 }, | 423 }, |
| 423 checkBox: { | 424 checkBox: { |
| 424 speak: '$if($checked, $earcon(CHECK_ON), $earcon(CHECK_OFF)) ' + | 425 speak: '$if($checked, $earcon(CHECK_ON), $earcon(CHECK_OFF)) ' + |
| 425 '$name $role $checked $description' | 426 '$name $role $checked $description' |
| 426 }, | 427 }, |
| 427 dialog: { | 428 dialog: { |
| 428 enter: '$nameFromNode $role $description' | 429 enter: '$nameFromNode $role $description' |
| (...skipping 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1622 break; | 1623 break; |
| 1623 } | 1624 } |
| 1624 earconFinder = earconFinder.parent; | 1625 earconFinder = earconFinder.parent; |
| 1625 } | 1626 } |
| 1626 } | 1627 } |
| 1627 return null; | 1628 return null; |
| 1628 } | 1629 } |
| 1629 }; | 1630 }; |
| 1630 | 1631 |
| 1631 }); // goog.scope | 1632 }); // goog.scope |
| OLD | NEW |