SVGLinearGradientElement.idl 468 B

1234567891011
  1. #import <SVG/SVGAnimatedLength.idl>
  2. #import <SVG/SVGGradientElement.idl>
  3. // https://svgwg.org/svg2-draft/single-page.html#pservers-InterfaceSVGLinearGradientElement
  4. [Exposed=Window]
  5. interface SVGLinearGradientElement : SVGGradientElement {
  6. [SameObject] readonly attribute SVGAnimatedLength x1;
  7. [SameObject] readonly attribute SVGAnimatedLength y1;
  8. [SameObject] readonly attribute SVGAnimatedLength x2;
  9. [SameObject] readonly attribute SVGAnimatedLength y2;
  10. };