HTMLObjectElement.idl 667 B

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