mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
21 lines
620 B
Plaintext
21 lines
620 B
Plaintext
// https://wicg.github.io/speech-api/#speechsynthesisutterance
|
|
[Exposed=Window]
|
|
interface SpeechSynthesisUtterance : EventTarget {
|
|
constructor(optional DOMString text = "");
|
|
|
|
attribute DOMString text;
|
|
attribute DOMString lang;
|
|
attribute SpeechSynthesisVoice? voice;
|
|
attribute float volume;
|
|
attribute float rate;
|
|
attribute float pitch;
|
|
|
|
attribute EventHandler onstart;
|
|
attribute EventHandler onend;
|
|
attribute EventHandler onerror;
|
|
attribute EventHandler onpause;
|
|
attribute EventHandler onresume;
|
|
attribute EventHandler onmark;
|
|
attribute EventHandler onboundary;
|
|
};
|