2022-02-15 22:40:51 +03:30
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
|
2020-07-27 05:04:26 +01:00
|
|
|
interface HTMLAnchorElement : HTMLElement {
|
|
|
|
|
|
|
|
[Reflect] attribute DOMString target;
|
|
|
|
[Reflect] attribute DOMString download;
|
|
|
|
[Reflect] attribute DOMString ping;
|
|
|
|
[Reflect] attribute DOMString rel;
|
|
|
|
[Reflect] attribute DOMString hreflang;
|
|
|
|
[Reflect] attribute DOMString type;
|
|
|
|
|
2020-11-12 04:16:41 +00:00
|
|
|
[Reflect] attribute DOMString coords;
|
|
|
|
[Reflect] attribute DOMString charset;
|
|
|
|
[Reflect] attribute DOMString name;
|
|
|
|
[Reflect] attribute DOMString rev;
|
|
|
|
[Reflect] attribute DOMString shape;
|
|
|
|
|
2021-10-03 19:39:12 +02:00
|
|
|
// FIXME: This should come from a HTMLHyperlinkElementUtils mixin
|
|
|
|
[CEReactions] stringifier attribute USVString href;
|
|
|
|
readonly attribute USVString origin;
|
|
|
|
[CEReactions] attribute USVString protocol;
|
|
|
|
[CEReactions] attribute USVString username;
|
|
|
|
[CEReactions] attribute USVString password;
|
|
|
|
[CEReactions] attribute USVString host;
|
|
|
|
[CEReactions] attribute USVString hostname;
|
|
|
|
[CEReactions] attribute USVString port;
|
|
|
|
[CEReactions] attribute USVString pathname;
|
|
|
|
[CEReactions] attribute USVString search;
|
|
|
|
[CEReactions] attribute USVString hash;
|
|
|
|
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|