HTMLAnchorElement.idl 1.0 KB

1234567891011121314151617181920212223242526272829
  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. [HTMLConstructor] constructor();
  7. [CEReactions, Reflect] attribute DOMString target;
  8. [CEReactions, Reflect] attribute DOMString download;
  9. [CEReactions, Reflect] attribute DOMString ping;
  10. [CEReactions, Reflect] attribute DOMString rel;
  11. // FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
  12. [CEReactions, Reflect] attribute DOMString hreflang;
  13. [CEReactions, Reflect] attribute DOMString type;
  14. [CEReactions] attribute DOMString text;
  15. // Obsolete
  16. [CEReactions, Reflect] attribute DOMString coords;
  17. [CEReactions, Reflect] attribute DOMString charset;
  18. [CEReactions, Reflect] attribute DOMString name;
  19. [CEReactions, Reflect] attribute DOMString rev;
  20. [CEReactions, Reflect] attribute DOMString shape;
  21. };
  22. HTMLAnchorElement includes HTMLHyperlinkElementUtils;