ladybird/Userland/Libraries/LibWeb/HTML/AudioTrack.idl
Timothy Flynn c89fd6dff0 LibWeb: Implement the AudioTrack and AudioTrackList interfaces
These are used to own and manage the playing of audio data.
2023-06-13 06:14:01 +02:00

10 lines
297 B
Plaintext

// https://html.spec.whatwg.org/multipage/media.html#audiotrack
[Exposed=Window]
interface AudioTrack {
readonly attribute DOMString id;
readonly attribute DOMString kind;
readonly attribute DOMString label;
readonly attribute DOMString language;
attribute boolean enabled;
};