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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 |
OLD | NEW |