mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
13 lines
314 B
Plaintext
13 lines
314 B
Plaintext
#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;
|
|
|
|
};
|