| Index: chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js
|
| index 226ab9a0f7a4e57b0027fd7882cf668fb338887d..c47f5a1bfd732123ef3ccffa59e6510a352b3aa9 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js
|
| @@ -442,7 +442,8 @@ cvox.AbstractTts.CHARACTER_DICTIONARY = {
|
| '\t': 'tab',
|
| '\r': 'return',
|
| '\n': 'new_line',
|
| - '\\': 'backslash'
|
| + '\\': 'backslash',
|
| + '\u2022': 'bullet'
|
| };
|
|
|
|
|
| @@ -550,7 +551,7 @@ cvox.AbstractTts.substitutionDictionaryRegexp_;
|
| * @private
|
| */
|
| cvox.AbstractTts.repetitionRegexp_ =
|
| - /([-\/\\|!@#$%^&*\(\)=_+\[\]\{\}.?;'":<>])\1{2,}/g;
|
| + /([-\/\\|!@#$%^&*\(\)=_+\[\]\{\}.?;'":<>\u2022])\1{1,}/g;
|
|
|
|
|
| /**
|
|
|