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 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 cell: { | 422 cell: { |
423 enter: '@cell_summary($tableCellRowIndex, $tableCellColumnIndex) ' + | 423 enter: '@cell_summary($tableCellRowIndex, $tableCellColumnIndex) ' + |
424 '$node(tableColumnHeader)', | 424 '$node(tableColumnHeader)', |
425 speak: '@cell_summary($tableCellRowIndex, $tableCellColumnIndex) ' + | 425 speak: '@cell_summary($tableCellRowIndex, $tableCellColumnIndex) ' + |
426 '$node(tableColumnHeader) $state' | 426 '$node(tableColumnHeader) $state' |
427 }, | 427 }, |
428 checkBox: { | 428 checkBox: { |
429 speak: '$if($checked, $earcon(CHECK_ON), $earcon(CHECK_OFF)) ' + | 429 speak: '$if($checked, $earcon(CHECK_ON), $earcon(CHECK_OFF)) ' + |
430 '$name $role $checked $description $state' | 430 '$name $role $checked $description $state' |
431 }, | 431 }, |
| 432 client: { |
| 433 speak: '$name' |
| 434 }, |
432 date: { | 435 date: { |
433 enter: '$nameFromNode $role $description' | 436 enter: '$nameFromNode $role $description' |
434 }, | 437 }, |
435 dialog: { | 438 dialog: { |
436 enter: '$nameFromNode $role $description' | 439 enter: '$nameFromNode $role $description' |
437 }, | 440 }, |
438 div: { | 441 div: { |
439 enter: '$nameFromNode', | 442 enter: '$nameFromNode', |
440 speak: '$name $description $descendants' | 443 speak: '$name $description $descendants' |
441 }, | 444 }, |
(...skipping 1251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1693 break; | 1696 break; |
1694 } | 1697 } |
1695 earconFinder = earconFinder.parent; | 1698 earconFinder = earconFinder.parent; |
1696 } | 1699 } |
1697 } | 1700 } |
1698 return null; | 1701 return null; |
1699 } | 1702 } |
1700 }; | 1703 }; |
1701 | 1704 |
1702 }); // goog.scope | 1705 }); // goog.scope |
OLD | NEW |