HTMLAreaElement.idl 914 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. // FIXME: [HTMLConstructor] constructor();
  7. // FIXME: [CEReactions] attribute DOMString alt;
  8. // FIXME: [CEReactions] attribute DOMString coords;
  9. // FIXME: [CEReactions] attribute DOMString shape;
  10. // FIXME: [CEReactions] attribute DOMString target;
  11. // FIXME: [CEReactions] attribute DOMString download;
  12. // FIXME: [CEReactions] attribute USVString ping;
  13. // FIXME: [CEReactions] 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;