| Index: chrome/browser/resources/chromeos/chromevox/chromevox/injected/initial_speech.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/initial_speech.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/initial_speech.js
|
| index fa1fcf63f9fcdb251ecaae8484e1331906046f95..6bfac70b9ff2250c153efef7bf5f9e8e65da3678 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/initial_speech.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/initial_speech.js
|
| @@ -48,15 +48,13 @@ cvox.InitialSpeech.speak = function() {
|
| }
|
|
|
| if (title && !disableSpeak) {
|
| - cvox.ChromeVox.tts.speak(
|
| - title, cvox.QueueMode.FLUSH);
|
| + cvox.ChromeVox.tts.speak(title, cvox.QueueMode.FLUSH);
|
| }
|
| cvox.BrailleOverlayWidget.getInstance().init();
|
| }
|
|
|
| // Initialize live regions and speak alerts.
|
| - cvox.LiveRegions.init(
|
| - new Date(), cvox.QueueMode.QUEUE, disableSpeak);
|
| + cvox.LiveRegions.init(new Date(), cvox.QueueMode.QUEUE, disableSpeak);
|
|
|
| // If our activeElement is on body, try to sync to the first element. This
|
| // actually happens inside of NavigationManager.reset, which doesn't get
|
|
|