I am using chrome Version 55.0.2883.87 m (64-bit) on Windows 10.
The following simple html file reproduces the problem and is extracted from my more complex application. It is supposed to say 3 words when loading the page. It works on MS Edge and Firefox, but does not work on chrome. This code worked for me on Chrome without problems a couple of weeks ago.
<html> <head> <script lang="javascript"> window.speechSynthesis.speak(new SpeechSynthesisUtterance("cat")); window.speechSynthesis.speak(new SpeechSynthesisUtterance("dog")); window.speechSynthesis.speak(new SpeechSynthesisUtterance("bark")); </script> </head> <body></body> </html>
google-chrome webspeech-api
Zach fewtrell
source share