LibWeb/SVG: Implement reflected attributes in SVGAElement

This change implements the download, ping, rel, hreflang, and type
attributes using the [Reflect] annotation in the IDL file.
This commit is contained in:
Jamie Mansfield 2024-07-16 12:08:03 +01:00 committed by Andreas Kling
parent 5bac8e7730
commit 7562f89d4e
Notes: sideshowbarker 2024-07-17 07:14:17 +09:00

View file

@ -6,12 +6,12 @@
interface SVGAElement : SVGGraphicsElement {
[FIXME, SameObject] readonly attribute SVGAnimatedString target;
[FIXME] attribute DOMString download;
[FIXME] attribute USVString ping;
[FIXME] attribute DOMString rel;
[Reflect] attribute DOMString download;
[Reflect] attribute USVString ping;
[Reflect] attribute DOMString rel;
[FIXME, SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
[FIXME] attribute DOMString hreflang;
[FIXME] attribute DOMString type;
[Reflect] attribute DOMString hreflang;
[Reflect] attribute DOMString type;
[FIXME] attribute DOMString text;