2022-02-15 16:10:51 -03:00
|
|
|
#import <HTML/HTMLElement.idl>
|
2022-07-27 16:20:38 -03:00
|
|
|
#import <HTML/HTMLHyperlinkElementUtils.idl>
|
2022-02-15 16:10:51 -03:00
|
|
|
|
2022-07-27 16:20:38 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/text-level-semantics.html#htmlanchorelement
|
2020-07-27 01:04:26 -03:00
|
|
|
interface HTMLAnchorElement : HTMLElement {
|
2022-07-27 16:20:38 -03:00
|
|
|
// FIXME: [HTMLConstructor] constructor();
|
2020-07-27 01:04:26 -03:00
|
|
|
|
|
|
|
|
[Reflect] attribute DOMString target;
|
|
|
|
|
[Reflect] attribute DOMString download;
|
|
|
|
|
[Reflect] attribute DOMString ping;
|
|
|
|
|
[Reflect] attribute DOMString rel;
|
2022-07-27 16:20:38 -03:00
|
|
|
// FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
|
2020-07-27 01:04:26 -03:00
|
|
|
[Reflect] attribute DOMString hreflang;
|
|
|
|
|
[Reflect] attribute DOMString type;
|
|
|
|
|
|
2022-07-27 16:20:38 -03:00
|
|
|
// Obsolete
|
2020-11-12 01:16:41 -03:00
|
|
|
[Reflect] attribute DOMString coords;
|
|
|
|
|
[Reflect] attribute DOMString charset;
|
|
|
|
|
[Reflect] attribute DOMString name;
|
|
|
|
|
[Reflect] attribute DOMString rev;
|
|
|
|
|
[Reflect] attribute DOMString shape;
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|
2022-07-27 16:20:38 -03:00
|
|
|
|
|
|
|
|
HTMLAnchorElement includes HTMLHyperlinkElementUtils;
|