mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
NewAKString is effectively the default for any new IDL interface, so let's mark this as the default behavior. It also makes it much easier to figure out whatever interfaces are still left to port over to new AK String.
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
#import <HTML/HTMLElement.idl>
|
|
#import <HTML/HTMLHyperlinkElementUtils.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/text-level-semantics.html#htmlanchorelement
|
|
[Exposed=Window, UseDeprecatedAKString]
|
|
interface HTMLAnchorElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions, Reflect] attribute DOMString target;
|
|
[CEReactions, Reflect] attribute DOMString download;
|
|
[CEReactions, Reflect] attribute DOMString ping;
|
|
[CEReactions, Reflect] attribute DOMString rel;
|
|
// FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
|
|
[CEReactions, Reflect] attribute DOMString hreflang;
|
|
[CEReactions, Reflect] attribute DOMString type;
|
|
|
|
[CEReactions] attribute DOMString text;
|
|
|
|
[CEReactions] attribute DOMString referrerPolicy;
|
|
|
|
// Obsolete
|
|
[CEReactions, Reflect] attribute DOMString coords;
|
|
[CEReactions, Reflect] attribute DOMString charset;
|
|
[CEReactions, Reflect] attribute DOMString name;
|
|
[CEReactions, Reflect] attribute DOMString rev;
|
|
[CEReactions, Reflect] attribute DOMString shape;
|
|
|
|
};
|
|
|
|
HTMLAnchorElement includes HTMLHyperlinkElementUtils;
|