mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
19 lines
669 B
Plaintext
19 lines
669 B
Plaintext
// https://svgwg.org/svg2-draft/linking.html#InterfaceSVGAElement
|
|
[Exposed=Window]
|
|
interface SVGAElement : SVGGraphicsElement {
|
|
|
|
[SameObject] readonly attribute SVGAnimatedString target;
|
|
[Reflect] attribute DOMString download;
|
|
[Reflect] attribute USVString ping;
|
|
[Reflect] attribute DOMString rel;
|
|
[SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
|
|
[Reflect] attribute DOMString hreflang;
|
|
[Reflect] attribute DOMString type;
|
|
|
|
[Reflect=referrerpolicy, Enumerated=ReferrerPolicy] attribute DOMString referrerPolicy;
|
|
|
|
};
|
|
|
|
SVGAElement includes SVGURIReference;
|
|
// FIXME: SVGAElement includes HTMLHyperlinkElementUtils;
|