HTMLSourceElement.idl 623 B

1234567891011121314151617
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/embedded-content.html#htmlsourceelement
  3. [Exposed=Window]
  4. interface HTMLSourceElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions, Reflect] attribute DOMString src;
  7. [CEReactions, Reflect] attribute DOMString type;
  8. [CEReactions, Reflect] attribute DOMString srcset;
  9. [CEReactions, Reflect] attribute DOMString sizes;
  10. [CEReactions, Reflect] attribute DOMString media;
  11. // FIXME: [CEReactions, Reflect] attribute unsigned long width;
  12. // FIXME: [CEReactions, Reflect] attribute unsigned long height;
  13. };