mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
26 lines
777 B
Plaintext
26 lines
777 B
Plaintext
#import <DOM/EventTarget.idl>
|
|
#import <HTML/Window.idl>
|
|
#import <Speech/SpeechSynthesisUtterance.idl>
|
|
#import <Speech/SpeechSynthesisVoice.idl>
|
|
|
|
// 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;
|
|
};
|