HTMLVideoElement.idl 558 B

12345678910111213141516
  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. // FIXME: [CEReactions] attribute unsigned long width;
  7. // FIXME: [CEReactions] attribute unsigned long height;
  8. readonly attribute unsigned long videoWidth;
  9. readonly attribute unsigned long videoHeight;
  10. [CEReactions, Reflect] attribute USVString poster;
  11. [CEReactions, Reflect=playsinline] attribute boolean playsInline;
  12. };