| Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
|
| index cdcdbc92e61984189169d7f240b76368ceec4c6b..cd063b2ff1200ef26cd973053bdeb3edc8411fed 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
|
| @@ -116,8 +116,7 @@ Output.SPACE = ' ';
|
| */
|
| Output.ROLE_INFO_ = {
|
| alert: {
|
| - msgId: 'role_alert',
|
| - earconId: 'ALERT_NONMODAL'
|
| + msgId: 'role_alert'
|
| },
|
| alertDialog: {
|
| msgId: 'role_alertdialog',
|
| @@ -398,7 +397,7 @@ Output.RULES = {
|
| leave: '@exited_container($role)'
|
| },
|
| alert: {
|
| - speak: '!doNotInterrupt $role $descendants $state'
|
| + speak: '$earcon(ALERT_NONMODAL) $role $descendants $state'
|
| },
|
| alertDialog: {
|
| enter: '$nameFromNode $role $description',
|
| @@ -601,8 +600,8 @@ Output.RULES = {
|
| },
|
| alert: {
|
| default: {
|
| - speak: '!doNotInterrupt @role_alert ' +
|
| - '$if($name, $name, $descendants) $earcon(ALERT_NONMODAL) $description'
|
| + speak: '$earcon(ALERT_NONMODAL) @role_alert ' +
|
| + '$if($name, $name, $descendants) $description'
|
| }
|
| }
|
| };
|
|
|