HTMLVideoElement.idl 439 B

1234567891011121314
  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. readonly attribute unsigned long videoWidth;
  7. readonly attribute unsigned long videoHeight;
  8. [CEReactions, Reflect] attribute USVString poster;
  9. [CEReactions, Reflect=playsinline] attribute boolean playsInline;
  10. };