HTMLObjectElement.idl 1.0 KB

1234567891011121314151617181920212223242526272829
  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. [HTMLConstructor] constructor();
  7. [CEReactions] attribute DOMString data;
  8. [CEReactions, Reflect] attribute DOMString type;
  9. [CEReactions, Reflect] attribute DOMString name;
  10. [CEReactions, Reflect=usemap] attribute DOMString useMap;
  11. [CEReactions, Reflect] attribute DOMString width;
  12. [CEReactions, Reflect] attribute DOMString height;
  13. readonly attribute Document? contentDocument;
  14. [CEReactions, Reflect] attribute DOMString align;
  15. [CEReactions, Reflect] attribute DOMString archive;
  16. [CEReactions, Reflect] attribute DOMString code;
  17. [CEReactions, Reflect] attribute boolean declare;
  18. [CEReactions, Reflect] attribute DOMString standby;
  19. [CEReactions, Reflect=codetype] attribute DOMString codeType;
  20. [CEReactions, LegacyNullToEmptyString, Reflect] attribute DOMString border;
  21. Document? getSVGDocument();
  22. };