HTMLVideoElement.idl 340 B

123456789101112
  1. #import <HTML/HTMLMediaElement.idl>
  2. // https://html.spec.whatwg.org/multipage/media.html#htmlvideoelement
  3. [Exposed=Window]
  4. interface HTMLVideoElement : HTMLMediaElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions, Reflect] attribute USVString poster;
  7. [CEReactions, Reflect=playsinline] attribute boolean playsInline;
  8. };