HTMLSourceElement.idl 383 B

12345678910111213
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/embedded-content.html#htmlsourceelement
  3. [Exposed=Window]
  4. interface HTMLSourceElement : HTMLElement {
  5. [Reflect] attribute DOMString src;
  6. [Reflect] attribute DOMString type;
  7. [Reflect] attribute DOMString srcset;
  8. [Reflect] attribute DOMString sizes;
  9. [Reflect] attribute DOMString media;
  10. };