| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 staticText: { | 150 staticText: { |
| 151 speak: '$value' | 151 speak: '$value' |
| 152 }, | 152 }, |
| 153 textBox: { | 153 textBox: { |
| 154 speak: '$name $value $earcon(EDITABLE_TEXT, @input_type_text)' | 154 speak: '$name $value $earcon(EDITABLE_TEXT, @input_type_text)' |
| 155 }, | 155 }, |
| 156 tab: { | 156 tab: { |
| 157 speak: '@describe_tab($name)' | 157 speak: '@describe_tab($name)' |
| 158 }, | 158 }, |
| 159 textField: { | 159 textField: { |
| 160 speak: '$name $value $earcon(EDITABLE_TEXT, @input_type_text)' | 160 speak: '$name $value $earcon(EDITABLE_TEXT, @input_type_text) $protected' |
| 161 }, | 161 }, |
| 162 toolbar: { | 162 toolbar: { |
| 163 enter: '$name $role' | 163 enter: '$name $role' |
| 164 }, | 164 }, |
| 165 window: { | 165 window: { |
| 166 enter: '$name', | 166 enter: '$name', |
| 167 speak: '@describe_window($name) $earcon(OBJECT_OPEN)' | 167 speak: '@describe_window($name) $earcon(OBJECT_OPEN)' |
| 168 } | 168 } |
| 169 }, | 169 }, |
| 170 menuStart: { | 170 menuStart: { |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 } | 754 } |
| 755 | 755 |
| 756 if (currentNode != root) | 756 if (currentNode != root) |
| 757 throw 'Unbalanced parenthesis.'; | 757 throw 'Unbalanced parenthesis.'; |
| 758 | 758 |
| 759 return root; | 759 return root; |
| 760 } | 760 } |
| 761 }; | 761 }; |
| 762 | 762 |
| 763 }); // goog.scope | 763 }); // goog.scope |
| OLD | NEW |