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

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

Issue 2144873002: Support first letter navigation in Panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test. Created 4 years, 5 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 | « no previous file | chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs » ('j') | 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 msgId: 'role_math', 225 msgId: 'role_math',
226 inherits: 'abstractContainer' 226 inherits: 'abstractContainer'
227 }, 227 },
228 menu: { 228 menu: {
229 msgId: 'role_menu' 229 msgId: 'role_menu'
230 }, 230 },
231 menuBar: { 231 menuBar: {
232 msgId: 'role_menubar', 232 msgId: 'role_menubar',
233 }, 233 },
234 menuItem: { 234 menuItem: {
235 msgId: 'role_menuitem', 235 msgId: 'role_menuitem'
236 ignoreAncestry: true
237 }, 236 },
238 menuItemCheckBox: { 237 menuItemCheckBox: {
239 msgId: 'role_menuitemcheckbox', 238 msgId: 'role_menuitemcheckbox'
240 ignoreAncestry: true
241 }, 239 },
242 menuItemRadio: { 240 menuItemRadio: {
243 msgId: 'role_menuitemradio', 241 msgId: 'role_menuitemradio'
244 ignoreAncestry: true
245 }, 242 },
246 menuListOption: { 243 menuListOption: {
247 msgId: 'role_menuitem', 244 msgId: 'role_menuitem'
248 ignoreAncestry: true
249 }, 245 },
250 menuListPopup: { 246 menuListPopup: {
251 msgId: 'role_menu' 247 msgId: 'role_menu'
252 }, 248 },
253 navigation: { 249 navigation: {
254 msgId: 'role_navigation', 250 msgId: 'role_navigation',
255 inherits: 'abstractContainer' 251 inherits: 'abstractContainer'
256 }, 252 },
257 note: { 253 note: {
258 msgId: 'role_note', 254 msgId: 'role_note',
(...skipping 1384 matching lines...) Expand 10 before | Expand all | Expand 10 after
1643 break; 1639 break;
1644 } 1640 }
1645 earconFinder = earconFinder.parent; 1641 earconFinder = earconFinder.parent;
1646 } 1642 }
1647 } 1643 }
1648 return null; 1644 return null;
1649 } 1645 }
1650 }; 1646 };
1651 1647
1652 }); // goog.scope 1648 }); // goog.scope
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698