mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
24 lines
779 B
Plaintext
24 lines
779 B
Plaintext
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/media.html#htmltrackelement
|
|
[Exposed=Window]
|
|
interface HTMLTrackElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
// FIXME: [CEReactions] attribute DOMString kind;
|
|
[CEReactions, Reflect] attribute DOMString src;
|
|
[CEReactions, Reflect] attribute DOMString srclang;
|
|
[CEReactions, Reflect] attribute DOMString label;
|
|
[CEReactions, Reflect] attribute boolean default;
|
|
|
|
// FIXME: [const unsigned short NONE = 0;
|
|
// FIXME: [const unsigned short LOADING = 1;
|
|
// FIXME: [const unsigned short LOADED = 2;
|
|
// FIXME: [const unsigned short ERROR = 3;
|
|
// FIXME: [readonly attribute unsigned short readyState;
|
|
|
|
// FIXME: [readonly attribute TextTrack track;
|
|
|
|
};
|