HTMLImageElement.idl 584 B

12345678910111213141516171819
  1. #import <HTML/HTMLElement.idl>
  2. interface HTMLImageElement : HTMLElement {
  3. [Reflect] attribute DOMString src;
  4. [Reflect] attribute DOMString alt;
  5. [Reflect] attribute DOMString srcset;
  6. [Reflect] attribute DOMString sizes;
  7. [Reflect=usemap] attribute DOMString useMap;
  8. [Reflect=ismap] attribute boolean isMap;
  9. [Reflect] attribute DOMString name;
  10. [Reflect] attribute DOMString align;
  11. [LegacyNullToEmptyString, Reflect] attribute DOMString border;
  12. [CEReactions] attribute unsigned long width;
  13. [CEReactions] attribute unsigned long height;
  14. };