HTMLAreaElement.idl 958 B

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