mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-18 15:52:21 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
13 lines
377 B
Text
13 lines
377 B
Text
// https://html.spec.whatwg.org/multipage/media.html#texttrackcue
|
|
[Exposed=Window]
|
|
interface TextTrackCue : EventTarget {
|
|
readonly attribute TextTrack? track;
|
|
|
|
attribute DOMString id;
|
|
attribute double startTime;
|
|
attribute unrestricted double endTime;
|
|
attribute boolean pauseOnExit;
|
|
|
|
attribute EventHandler onenter;
|
|
attribute EventHandler onexit;
|
|
};
|