HTMLAnchorElement.idl 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. #import <HTML/HTMLElement.idl>
  2. interface HTMLAnchorElement : HTMLElement {
  3. [Reflect] attribute DOMString target;
  4. [Reflect] attribute DOMString download;
  5. [Reflect] attribute DOMString ping;
  6. [Reflect] attribute DOMString rel;
  7. [Reflect] attribute DOMString hreflang;
  8. [Reflect] attribute DOMString type;
  9. [Reflect] attribute DOMString coords;
  10. [Reflect] attribute DOMString charset;
  11. [Reflect] attribute DOMString name;
  12. [Reflect] attribute DOMString rev;
  13. [Reflect] attribute DOMString shape;
  14. // FIXME: This should come from a HTMLHyperlinkElementUtils mixin
  15. [CEReactions] stringifier attribute USVString href;
  16. readonly attribute USVString origin;
  17. [CEReactions] attribute USVString protocol;
  18. [CEReactions] attribute USVString username;
  19. [CEReactions] attribute USVString password;
  20. [CEReactions] attribute USVString host;
  21. [CEReactions] attribute USVString hostname;
  22. [CEReactions] attribute USVString port;
  23. [CEReactions] attribute USVString pathname;
  24. [CEReactions] attribute USVString search;
  25. [CEReactions] attribute USVString hash;
  26. };