HTMLAnchorElement.idl 1.1 KB

12345678910111213141516171819202122232425262728293031
  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. [CEReactions] attribute DOMString referrerPolicy;
  16. // Obsolete
  17. [CEReactions, Reflect] attribute DOMString coords;
  18. [CEReactions, Reflect] attribute DOMString charset;
  19. [CEReactions, Reflect] attribute DOMString name;
  20. [CEReactions, Reflect] attribute DOMString rev;
  21. [CEReactions, Reflect] attribute DOMString shape;
  22. };
  23. HTMLAnchorElement includes HTMLHyperlinkElementUtils;