1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:27:45 +00:00

LibWeb: Begin implementing SVGRectElement's SVGAnimatedLength attributes

This commit is contained in:
Timothy Flynn 2022-03-21 14:34:02 -04:00 committed by Andreas Kling
parent 7a6b4e33ba
commit 57296393ed
4 changed files with 77 additions and 6 deletions

View file

@ -1,11 +1,12 @@
#import <SVG/SVGAnimatedLength.idl>
#import <SVG/SVGGeometryElement.idl>
[Exposed=Window]
interface SVGRectElement : SVGGeometryElement {
// [SameObject] readonly attribute SVGAnimatedLength x;
// [SameObject] readonly attribute SVGAnimatedLength y;
// [SameObject] readonly attribute SVGAnimatedLength width;
// [SameObject] readonly attribute SVGAnimatedLength height;
// [SameObject] readonly attribute SVGAnimatedLength rx;
// [SameObject] readonly attribute SVGAnimatedLength ry;
[SameObject] readonly attribute SVGAnimatedLength x;
[SameObject] readonly attribute SVGAnimatedLength y;
[SameObject] readonly attribute SVGAnimatedLength width;
[SameObject] readonly attribute SVGAnimatedLength height;
[SameObject] readonly attribute SVGAnimatedLength rx;
[SameObject] readonly attribute SVGAnimatedLength ry;
};