HTMLAreaElement.idl 748 B

1234567891011121314151617181920212223
  1. #import <HTML/HTMLElement.idl>
  2. #import <HTML/HTMLHyperlinkElementUtils.idl>
  3. // https://html.spec.whatwg.org/multipage/image-maps.html#htmlareaelement
  4. [Exposed=Window]
  5. interface HTMLAreaElement : HTMLElement {
  6. [HTMLConstructor] constructor();
  7. [CEReactions, Reflect] attribute DOMString alt;
  8. [CEReactions, Reflect] attribute DOMString coords;
  9. [CEReactions, Reflect] attribute DOMString shape;
  10. [CEReactions, Reflect] attribute DOMString target;
  11. [CEReactions, Reflect] attribute DOMString download;
  12. [CEReactions, Reflect] attribute USVString ping;
  13. [CEReactions, Reflect] attribute DOMString rel;
  14. // Obsolete
  15. [Reflect=nohref] attribute boolean noHref;
  16. };
  17. HTMLAreaElement includes HTMLHyperlinkElementUtils;