2022-03-22 16:31:52 +00:00
|
|
|
#import <SVG/SVGAnimatedLength.idl>
|
2022-02-15 22:40:51 +03:30
|
|
|
#import <SVG/SVGGeometryElement.idl>
|
|
|
|
|
|
2023-11-07 19:29:22 -07:00
|
|
|
// https://svgwg.org/svg2-draft/single-page.html#shapes-InterfaceSVGLineElement
|
2022-02-11 16:56:36 +00:00
|
|
|
[Exposed=Window]
|
|
|
|
|
interface SVGLineElement : SVGGeometryElement {
|
2022-03-22 16:31:52 +00:00
|
|
|
[SameObject] readonly attribute SVGAnimatedLength x1;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength y1;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength x2;
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedLength y2;
|
2022-02-11 16:56:36 +00:00
|
|
|
};
|