HTMLObjectElement.idl 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. // FIXME: readonly attribute HTMLFormElement? form;
  11. [CEReactions, Reflect] attribute DOMString width;
  12. [CEReactions, Reflect] attribute DOMString height;
  13. readonly attribute Document? contentDocument;
  14. // FIXME: readonly attribute WindowProxy? contentWindow;
  15. Document? getSVGDocument();
  16. // FIXME: readonly attribute boolean willValidate;
  17. // FIXME: readonly attribute ValidityState validity;
  18. // FIXME: readonly attribute DOMString validationMessage;
  19. // FIXME: boolean checkValidity();
  20. // FIXME: boolean reportValidity();
  21. // FIXME: undefined setCustomValidity(DOMString error);
  22. // Obsolete
  23. [CEReactions, Reflect] attribute DOMString align;
  24. [CEReactions, Reflect] attribute DOMString archive;
  25. [CEReactions, Reflect] attribute DOMString code;
  26. [CEReactions, Reflect] attribute boolean declare;
  27. // FIXME: [CEReactions] attribute unsigned long hspace;
  28. [CEReactions, Reflect] attribute DOMString standby;
  29. // FIXME: [CEReactions] attribute unsigned long vspace;
  30. // FIXME: [CEReactions] attribute DOMString codeBase;
  31. [CEReactions, Reflect=codetype] attribute DOMString codeType;
  32. [CEReactions, Reflect=usemap] attribute DOMString useMap;
  33. [CEReactions, LegacyNullToEmptyString, Reflect] attribute DOMString border;
  34. };