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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 msgId: 'role_math', | 224 msgId: 'role_math', |
225 inherits: 'abstractContainer' | 225 inherits: 'abstractContainer' |
226 }, | 226 }, |
227 menu: { | 227 menu: { |
228 msgId: 'role_menu' | 228 msgId: 'role_menu' |
229 }, | 229 }, |
230 menuBar: { | 230 menuBar: { |
231 msgId: 'role_menubar', | 231 msgId: 'role_menubar', |
232 }, | 232 }, |
233 menuItem: { | 233 menuItem: { |
234 msgId: 'role_menuitem', | 234 msgId: 'role_menuitem' |
235 ignoreAncestry: true | |
236 }, | 235 }, |
237 menuItemCheckBox: { | 236 menuItemCheckBox: { |
238 msgId: 'role_menuitemcheckbox', | 237 msgId: 'role_menuitemcheckbox', |
239 ignoreAncestry: true | 238 ignoreAncestry: true |
240 }, | 239 }, |
241 menuItemRadio: { | 240 menuItemRadio: { |
242 msgId: 'role_menuitemradio', | 241 msgId: 'role_menuitemradio', |
243 ignoreAncestry: true | 242 ignoreAncestry: true |
244 }, | 243 }, |
245 menuListOption: { | 244 menuListOption: { |
(...skipping 1396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1642 break; | 1641 break; |
1643 } | 1642 } |
1644 earconFinder = earconFinder.parent; | 1643 earconFinder = earconFinder.parent; |
1645 } | 1644 } |
1646 } | 1645 } |
1647 return null; | 1646 return null; |
1648 } | 1647 } |
1649 }; | 1648 }; |
1650 | 1649 |
1651 }); // goog.scope | 1650 }); // goog.scope |
OLD | NEW |