ladybird/Userland/Libraries/LibWeb/HTML/HTMLVideoElement.idl
2023-03-23 13:37:40 +01:00

12 lines
314 B
Text

#import <HTML/HTMLMediaElement.idl>
// https://html.spec.whatwg.org/multipage/media.html#htmlvideoelement
[Exposed=Window]
interface HTMLVideoElement : HTMLMediaElement {
[HTMLConstructor] constructor();
[Reflect] attribute DOMString poster;
[Reflect=playsinline] attribute boolean playsInline;
};