HTMLObjectElement.idl 879 B

123456789101112131415161718192021222324252627
  1. #import <DOM/Document.idl>
  2. #import <HTML/HTMLElement.idl>
  3. // https://html.spec.whatwg.org/multipage/iframe-embed-object.html#htmlobjectelement
  4. [Exposed=Window]
  5. interface HTMLObjectElement : HTMLElement {
  6. [CEReactions] attribute DOMString data;
  7. [Reflect] attribute DOMString type;
  8. [Reflect] attribute DOMString name;
  9. [Reflect=usemap] attribute DOMString useMap;
  10. [Reflect] attribute DOMString width;
  11. [Reflect] attribute DOMString height;
  12. readonly attribute Document? contentDocument;
  13. [Reflect] attribute DOMString align;
  14. [Reflect] attribute DOMString archive;
  15. [Reflect] attribute DOMString code;
  16. [Reflect] attribute boolean declare;
  17. [Reflect] attribute DOMString standby;
  18. [Reflect=codetype] attribute DOMString codeType;
  19. [LegacyNullToEmptyString, Reflect] attribute DOMString border;
  20. Document? getSVGDocument();
  21. };