HTMLAreaElement.idl 899 B

12345678910111213141516171819202122232425
  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. // FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
  15. // FIXME: [CEReactions] attribute DOMString referrerPolicy;
  16. // Obsolete
  17. [Reflect=nohref] attribute boolean noHref;
  18. };
  19. HTMLAreaElement includes HTMLHyperlinkElementUtils;