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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 menuItem: { | 124 menuItem: { |
125 msgId: 'aria_role_menuitem' | 125 msgId: 'aria_role_menuitem' |
126 }, | 126 }, |
127 menuListOption: { | 127 menuListOption: { |
128 msgId: 'aria_role_menuitem' | 128 msgId: 'aria_role_menuitem' |
129 }, | 129 }, |
130 menuListPopup: { | 130 menuListPopup: { |
131 msgId: 'aria_role_menu' | 131 msgId: 'aria_role_menu' |
132 }, | 132 }, |
133 popUpButton: { | 133 popUpButton: { |
134 msgId: 'tag_button' | 134 msgId: 'tag_button', |
| 135 earcon: 'LISTBOX' |
135 }, | 136 }, |
136 radioButton: { | 137 radioButton: { |
137 msgId: 'input_type_radio' | 138 msgId: 'input_type_radio' |
138 }, | 139 }, |
139 spinButton: { | 140 spinButton: { |
140 msgId: 'aria_role_combobox', | 141 msgId: 'aria_role_combobox', |
141 earcon: 'LISTBOX' | 142 earcon: 'LISTBOX' |
142 }, | 143 }, |
143 textBox: { | 144 textBox: { |
144 msgId: 'input_type_text', | 145 msgId: 'input_type_text', |
(...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
985 } | 986 } |
986 | 987 |
987 if (currentNode != root) | 988 if (currentNode != root) |
988 throw 'Unbalanced parenthesis.'; | 989 throw 'Unbalanced parenthesis.'; |
989 | 990 |
990 return root; | 991 return root; |
991 } | 992 } |
992 }; | 993 }; |
993 | 994 |
994 }); // goog.scope | 995 }); // goog.scope |
OLD | NEW |