2023-11-08 11:04:56 -07:00
|
|
|
#import <SVG/SVGAnimatedLength.idl>
|
2023-04-22 18:51:00 +01:00
|
|
|
#import <SVG/SVGGradientElement.idl>
|
|
|
|
|
|
2023-11-07 19:29:22 -07:00
|
|
|
// https://svgwg.org/svg2-draft/single-page.html#pservers-InterfaceSVGLinearGradientElement
|
2023-04-22 18:51:00 +01:00
|
|
|
[Exposed=Window]
|
|
|
|
|
interface SVGLinearGradientElement : SVGGradientElement {
|
2024-09-10 16:21:16 +09:00
|
|
|
[SameObject] readonly attribute SVGAnimatedLength x1;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength y1;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength x2;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength y2;
|
2023-04-22 18:51:00 +01:00
|
|
|
};
|