2024-07-16 12:08:34 +01:00
|
|
|
#import <DOM/DOMTokenList.idl>
|
2025-07-12 02:12:07 +01:00
|
|
|
#import <Fetch/Request.idl>
|
2024-06-23 17:05:47 +02:00
|
|
|
#import <HTML/HTMLHyperlinkElementUtils.idl>
|
|
|
|
|
#import <SVG/SVGURIReference.idl>
|
|
|
|
|
|
2024-07-16 11:31:41 +01:00
|
|
|
// https://svgwg.org/svg2-draft/linking.html#InterfaceSVGAElement
|
2024-06-23 17:05:47 +02:00
|
|
|
[Exposed=Window]
|
|
|
|
|
interface SVGAElement : SVGGraphicsElement {
|
|
|
|
|
|
2025-07-12 02:06:51 +01:00
|
|
|
[SameObject] readonly attribute SVGAnimatedString target;
|
2024-07-16 12:08:03 +01:00
|
|
|
[Reflect] attribute DOMString download;
|
|
|
|
|
[Reflect] attribute USVString ping;
|
|
|
|
|
[Reflect] attribute DOMString rel;
|
2024-07-16 12:08:34 +01:00
|
|
|
[SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
|
2024-07-16 12:08:03 +01:00
|
|
|
[Reflect] attribute DOMString hreflang;
|
|
|
|
|
[Reflect] attribute DOMString type;
|
2024-06-23 17:05:47 +02:00
|
|
|
|
2025-07-12 02:12:07 +01:00
|
|
|
[Reflect=referrerpolicy, Enumerated=ReferrerPolicy] attribute DOMString referrerPolicy;
|
2024-06-23 17:05:47 +02:00
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2024-07-16 13:43:42 +01:00
|
|
|
SVGAElement includes SVGURIReference;
|
2024-06-23 17:05:47 +02:00
|
|
|
// FIXME: SVGAElement includes HTMLHyperlinkElementUtils;
|