This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for the proper prefixes to use in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the spec changes.
The boundary
event of the Web Speech API is fired when the spoken utterance reaches a word or sentence boundary.
Bubbles | No |
Cancelable | No |
Target objects | SpeechSynthesisUtterance |
Interface | SpeechSynthesisEvent |
utterThis.onboundary = function(event) { console.log(event.name + ' boundary reached after ' + event.elapsedTime + ' milliseconds.'); }
The boundary
event implements the SpeechSynthesisEvent
interface, which inherits from Event
. It therefore has available the properties and methods defined on both these interfaces.
Specification | Status | Comment |
---|---|---|
Web Speech API The definition of 'speech synthesis utterance events' in that specification. | Draft |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 33 | 44 (44) [1] | Not supported | Not supported | Not supported |
Feature | Android | Chrome | Firefox Mobile (Gecko) | Firefox OS | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | ? | (Yes) | ? | 2.5 | Not supported | Not supported | Not supported |
media.webspeech.synth.enabled
flag in about:config.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/Events/boundary