Serenity Operating System
1#import <HTML/HTMLElement.idl>
2#import <HTML/HTMLHyperlinkElementUtils.idl>
3
4// https://html.spec.whatwg.org/multipage/text-level-semantics.html#htmlanchorelement
5[Exposed=Window]
6interface HTMLAnchorElement : HTMLElement {
7 // FIXME: [HTMLConstructor] constructor();
8
9 [Reflect] attribute DOMString target;
10 [Reflect] attribute DOMString download;
11 [Reflect] attribute DOMString ping;
12 [Reflect] attribute DOMString rel;
13 // FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
14 [Reflect] attribute DOMString hreflang;
15 [Reflect] attribute DOMString type;
16
17 // Obsolete
18 [Reflect] attribute DOMString coords;
19 [Reflect] attribute DOMString charset;
20 [Reflect] attribute DOMString name;
21 [Reflect] attribute DOMString rev;
22 [Reflect] attribute DOMString shape;
23};
24
25HTMLAnchorElement includes HTMLHyperlinkElementUtils;