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

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

Issue 902783006: Mask the value of passwords in accessible value. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile Created 5 years, 10 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 | ui/views/controls/textfield/textfield.cc » ('j') | 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « no previous file | ui/views/controls/textfield/textfield.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698