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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/editable_text_base.js

Issue 2383173002: Fix reading of password values. (Closed)
Patch Set: Bullets everywhere Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/chromevox/common/editable_text_base.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/editable_text_base.js b/chrome/browser/resources/chromeos/chromevox/common/editable_text_base.js
index 10a81d4cbc04589e8ae02cfea55818d21b426300..1d77e614387b0ab4bdf375bd6eec2234a66a6e10 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/editable_text_base.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/editable_text_base.js
@@ -341,7 +341,7 @@ cvox.ChromeVoxEditableTextBase.prototype.describeSelectionChanged =
// - one to speak
if (this.isPassword) {
- this.speak((new goog.i18n.MessageFormat(Msgs.getMsg('dot'))
+ this.speak((new goog.i18n.MessageFormat(Msgs.getMsg('bullet'))
.format({'COUNT': 1})), evt.triggeredByUser);
return;
}
@@ -437,7 +437,7 @@ cvox.ChromeVoxEditableTextBase.prototype.describeTextChanged = function(evt) {
personality = cvox.AbstractTts.PERSONALITY_DELETED;
}
if (this.isPassword) {
- this.speak((new goog.i18n.MessageFormat(Msgs.getMsg('dot'))
+ this.speak((new goog.i18n.MessageFormat(Msgs.getMsg('bullet'))
.format({'COUNT': 1})), evt.triggeredByUser, personality);
return;
}
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698