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

// https://html.spec.whatwg.org/multipage/media.html#htmlvideoelement
[Exposed=Window]
interface HTMLVideoElement : HTMLMediaElement {

    [Reflect] attribute DOMString poster;
    [Reflect=playsinline] attribute boolean playsInline;

};