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

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

Issue 1113843002: Add the listbox earcon back to the popupbutton output rule. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | no next file » | 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698