1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 17:24:57 +00:00
serenity/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;
};