HTMLObjectElement.idl 777 B

12345678910111213141516171819202122232425
  1. #import <DOM/Document.idl>
  2. #import <HTML/HTMLElement.idl>
  3. interface HTMLObjectElement : HTMLElement {
  4. [CEReactions] attribute DOMString data;
  5. [Reflect] attribute DOMString type;
  6. [Reflect] attribute DOMString name;
  7. [Reflect=usemap] attribute DOMString useMap;
  8. [Reflect] attribute DOMString width;
  9. [Reflect] attribute DOMString height;
  10. readonly attribute Document? contentDocument;
  11. [Reflect] attribute DOMString align;
  12. [Reflect] attribute DOMString archive;
  13. [Reflect] attribute DOMString code;
  14. [Reflect] attribute boolean declare;
  15. [Reflect] attribute DOMString standby;
  16. [Reflect=codetype] attribute DOMString codeType;
  17. [LegacyNullToEmptyString, Reflect] attribute DOMString border;
  18. Document? getSVGDocument();
  19. };