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

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

Issue 2008773002: Begin using ChromeVox Next to read tab and window titles. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a bunch of tests. Created 4 years, 6 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
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 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698