summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLTrackElement.idl
blob: 3e1a0296e3636eb43d4815d7efd53e89acd4732a (plain)
1
2
3
4
5
6
7
8
9
10
#import <HTML/HTMLElement.idl>

interface HTMLTrackElement : HTMLElement {

    [Reflect] attribute DOMString src;
    [Reflect] attribute DOMString srclang;
    [Reflect] attribute DOMString label;
    [Reflect] attribute boolean default;

};