mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 01:32:14 -05:00
13 lines
591 B
Text
13 lines
591 B
Text
#import <SVG/SVGAnimatedLength.idl>
|
|
#import <SVG/SVGGradientElement.idl>
|
|
|
|
// https://svgwg.org/svg2-draft/single-page.html#pservers-InterfaceSVGRadialGradientElement
|
|
[Exposed=Window]
|
|
interface SVGRadialGradientElement : SVGGradientElement {
|
|
[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;
|
|
};
|