2023-11-08 11:04:56 -07:00
|
|
|
#import <SVG/SVGAnimatedLength.idl>
|
2023-05-02 23:11:58 +01:00
|
|
|
#import <SVG/SVGGradientElement.idl>
|
|
|
|
|
|
2023-11-07 19:29:22 -07:00
|
|
|
// https://svgwg.org/svg2-draft/single-page.html#pservers-InterfaceSVGRadialGradientElement
|
2023-05-02 23:11:58 +01:00
|
|
|
[Exposed=Window]
|
|
|
|
|
interface SVGRadialGradientElement : SVGGradientElement {
|
2024-09-10 16:21:16 +09:00
|
|
|
[SameObject] readonly attribute SVGAnimatedLength cx;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength cy;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength r;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength fx;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength fy;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength fr;
|
2023-05-02 23:11:58 +01:00
|
|
|
};
|