Chromium Code Reviews| 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 84e99215d7150a3dc046190cebad4af40f8d3f1d..892e1c486518378d9fae5aba039ffff6b3ee74db 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' |
|
dmazzoni
2016/11/10 22:15:18
Are you deleting !doNotInterrupt on purpose? I tho
David Tseng
2016/11/10 23:46:04
It was when we were flushing by default. Ever sinc
|
| + 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' |
| } |
| } |
| }; |