ladybird/Userland/Libraries/LibWeb/HTML/VideoTrack.idl
Timothy Flynn 3f1badf9b2 LibWeb: Implement VideoTrack and VideoTrackList
This implements the IDL for these types and some event handling around
them.
2023-04-07 16:02:22 +02:00

10 lines
298 B
Plaintext

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