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

LibWeb: Implement the SVGAnimatedLength type

This commit is contained in:
Timothy Flynn 2022-03-21 14:33:11 -04:00 committed by Andreas Kling
parent ebf3829f1c
commit 7a6b4e33ba
5 changed files with 71 additions and 0 deletions

View file

@ -0,0 +1,6 @@
#import <SVG/SVGLength.idl>
interface SVGAnimatedLength {
readonly attribute SVGLength baseVal;
readonly attribute SVGLength animVal;
};