Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js

Issue 2383103003: Allow client nodes to gain ChromeVox range. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox/cvox2/background/desktop_automation_handler.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox/cvox2/background/desktop_automation_handler.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698