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
632 B
Plaintext
21 lines
632 B
Plaintext
// https://wicg.github.io/speech-api/#speechsynthesis
|
|
[Exposed=Window]
|
|
interface SpeechSynthesis : EventTarget {
|
|
readonly attribute boolean pending;
|
|
readonly attribute boolean speaking;
|
|
readonly attribute boolean paused;
|
|
|
|
attribute EventHandler onvoiceschanged;
|
|
|
|
[FIXME] undefined speak(SpeechSynthesisUtterance utterance);
|
|
undefined cancel();
|
|
[FIXME] undefined pause();
|
|
[FIXME] undefined resume();
|
|
sequence<SpeechSynthesisVoice> getVoices();
|
|
};
|
|
|
|
// https://wicg.github.io/speech-api/#tts-section
|
|
partial interface Window {
|
|
[SameObject] readonly attribute SpeechSynthesis speechSynthesis;
|
|
};
|