Definition
HTML Standard defines 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;
};
Methods and attributes that return objects implementing TextTrackCue
Referring IDL interfaces/dictionaries
Referring specifications
- DataCue API refers to
TextTrackCue
- WebVTT: The Web Video Text Tracks Format refers to
TextTrackCue