HTMLAnchorElement.idl 871 B

123456789101112131415161718192021222324
  1. #import <HTML/HTMLElement.idl>
  2. #import <HTML/HTMLHyperlinkElementUtils.idl>
  3. // https://html.spec.whatwg.org/multipage/text-level-semantics.html#htmlanchorelement
  4. interface HTMLAnchorElement : HTMLElement {
  5. // FIXME: [HTMLConstructor] constructor();
  6. [Reflect] attribute DOMString target;
  7. [Reflect] attribute DOMString download;
  8. [Reflect] attribute DOMString ping;
  9. [Reflect] attribute DOMString rel;
  10. // FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
  11. [Reflect] attribute DOMString hreflang;
  12. [Reflect] attribute DOMString type;
  13. // Obsolete
  14. [Reflect] attribute DOMString coords;
  15. [Reflect] attribute DOMString charset;
  16. [Reflect] attribute DOMString name;
  17. [Reflect] attribute DOMString rev;
  18. [Reflect] attribute DOMString shape;
  19. };
  20. HTMLAnchorElement includes HTMLHyperlinkElementUtils;