ladybird/Userland/Libraries/LibWeb/HTML/HTMLVideoElement.idl

15 lines
462 B
Plaintext
Raw Normal View History

#import <HTML/HTMLMediaElement.idl>
// https://html.spec.whatwg.org/multipage/media.html#htmlvideoelement
[Exposed=Window, UseDeprecatedAKString]
interface HTMLVideoElement : HTMLMediaElement {
[HTMLConstructor] constructor();
readonly attribute unsigned long videoWidth;
readonly attribute unsigned long videoHeight;
[CEReactions, Reflect] attribute USVString poster;
[CEReactions, Reflect=playsinline] attribute boolean playsInline;
};