mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-18 07:43:37 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
12 lines
425 B
Text
12 lines
425 B
Text
// https://html.spec.whatwg.org/multipage/media.html#videotracklist
|
|
[Exposed=Window]
|
|
interface VideoTrackList : EventTarget {
|
|
readonly attribute unsigned long length;
|
|
getter VideoTrack (unsigned long index);
|
|
VideoTrack? getTrackById(DOMString id);
|
|
readonly attribute long selectedIndex;
|
|
|
|
attribute EventHandler onchange;
|
|
attribute EventHandler onaddtrack;
|
|
attribute EventHandler onremovetrack;
|
|
};
|