| Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/editing.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/editing.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/editing.js
|
| index 4679dd3dee3af47bef5b8d50f1c0ca6dad864834..ddc45a8114cb11a164cfe4ce2dfecacdf80f5365 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/editing.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/editing.js
|
| @@ -360,6 +360,8 @@ AutomationRichEditableText.prototype = {
|
| */
|
| speakTextStyle_: function(style, opt_end) {
|
| var msgs = [];
|
| + if (style.state.linked)
|
| + msgs.push(opt_end ? 'link_end' : 'link_start');
|
| if (style.bold)
|
| msgs.push(opt_end ? 'bold_end' : 'bold_start');
|
| if (style.italic)
|
|
|