blob: bcaeb8a47af1bec33f452282216f7658c441ca4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/media.html#htmltrackelement
[Exposed=Window]
interface HTMLTrackElement : HTMLElement {
[Reflect] attribute DOMString src;
[Reflect] attribute DOMString srclang;
[Reflect] attribute DOMString label;
[Reflect] attribute boolean default;
};
|