mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 13:45:06 +00:00

This follows on from the SVG linear gradients. It supports the same features (xlink:href, gradientUnits, gradientTransform). With this commit I have now implemented all web gradients :^) (Though we are still missing a few parameters for SVG gradients, e.g. spreadMethod).
11 lines
451 B
Text
11 lines
451 B
Text
#import <SVG/SVGGradientElement.idl>
|
|
|
|
[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;
|
|
};
|