HTMLAnchorElement.idl 888 B

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