LibWeb: Expose SVGEllipseElement attributes to JS

This commit is contained in:
Sam Atkins 2022-03-22 16:57:00 +00:00 committed by Andreas Kling
commit ccee8953d0
Notes: sideshowbarker 2024-07-17 16:52:50 +09:00
3 changed files with 51 additions and 4 deletions

View file

@ -1,9 +1,10 @@
#import <SVG/SVGAnimatedLength.idl>
#import <SVG/SVGGeometryElement.idl>
[Exposed=Window]
interface SVGEllipseElement : SVGGeometryElement {
// [SameObject] readonly attribute SVGAnimatedLength cx;
// [SameObject] readonly attribute SVGAnimatedLength cy;
// [SameObject] readonly attribute SVGAnimatedLength rx;
// [SameObject] readonly attribute SVGAnimatedLength ry;
[SameObject] readonly attribute SVGAnimatedLength cx;
[SameObject] readonly attribute SVGAnimatedLength cy;
[SameObject] readonly attribute SVGAnimatedLength rx;
[SameObject] readonly attribute SVGAnimatedLength ry;
};