Re: [heycam/webidl] Extending an interface with boolean attribute with default value false (#880)

`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