SVGRadialGradientElement.idl 579 B

12345678910111213
  1. #import <SVG/SVGAnimatedLength.idl>
  2. #import <SVG/SVGGradientElement.idl>
  3. // https://svgwg.org/svg2-draft/single-page.html#pservers-InterfaceSVGRadialGradientElement
  4. [Exposed=Window]
  5. interface SVGRadialGradientElement : SVGGradientElement {
  6. [SameObject] readonly attribute SVGAnimatedLength cx;
  7. [SameObject] readonly attribute SVGAnimatedLength cy;
  8. [SameObject] readonly attribute SVGAnimatedLength r;
  9. [SameObject] readonly attribute SVGAnimatedLength fx;
  10. [SameObject] readonly attribute SVGAnimatedLength fy;
  11. [SameObject] readonly attribute SVGAnimatedLength fr;
  12. };