HTMLEmbedElement.idl 589 B

12345678910111213141516171819
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/semantics.html#htmlembedelement
  3. [Exposed=Window]
  4. interface HTMLEmbedElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions, Reflect] attribute DOMString src;
  7. [CEReactions, Reflect] attribute DOMString type;
  8. [CEReactions, Reflect] attribute DOMString width;
  9. [CEReactions, Reflect] attribute DOMString height;
  10. // FIXME: Document? getSVGDocument();
  11. // Obsolete
  12. [CEReactions, Reflect] attribute DOMString align;
  13. [CEReactions, Reflect] attribute DOMString name;
  14. };