- From: guest271314 <notifications@github.com>
- Date: Sat, 16 May 2020 06:48:21 -0700
- To: heycam/webidl <webidl@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Saturday, 16 May 2020 13:48:35 UTC
`speechSynthesis.speak(new SpeechSynthesisUtterance('<p>hello<break>universe</p>', {ssmlMode: true})) // defined at SpeechSynthesisUtterance` or `speechSynthesis.speak(new SpeechSynthesisUtterance('<p>hello<break>universe</p>'), {ssmlMode: true}) // defined at speak` _not_ defined when trying to set after constructor? ``` const u = new SpeechSynthesisUtterance(); u.text = '<p>hello<break>universe</p>'; u.ssmlMode = true; ``` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/heycam/webidl/issues/880#issuecomment-629648581
Received on Saturday, 16 May 2020 13:48:35 UTC