These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
7 lines
255 B
Text
7 lines
255 B
Text
// https://html.spec.whatwg.org/multipage/media.html#texttrackcuelist
|
|
[Exposed=Window]
|
|
interface TextTrackCueList {
|
|
readonly attribute unsigned long length;
|
|
getter TextTrackCue (unsigned long index);
|
|
TextTrackCue? getCueById(DOMString id);
|
|
};
|