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:
parent
5bac8e7730
commit
7562f89d4e
Notes:
sideshowbarker
2024-07-17 07:14:17 +09:00
Author: https://github.com/jamierocks Commit: https://github.com/LadybirdBrowser/ladybird/commit/7562f89d4e Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/666
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue