HTMLAreaElement.idl 897 B

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