mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 18:25:06 +00:00
11 lines
454 B
Text
11 lines
454 B
Text
#import <SVG/SVGAnimatedLength.idl>
|
|
#import <SVG/SVGGeometryElement.idl>
|
|
|
|
// https://svgwg.org/svg2-draft/single-page.html#shapes-InterfaceSVGLineElement
|
|
[Exposed=Window]
|
|
interface SVGLineElement : SVGGeometryElement {
|
|
[SameObject] readonly attribute SVGAnimatedLength x1;
|
|
[SameObject] readonly attribute SVGAnimatedLength y1;
|
|
[SameObject] readonly attribute SVGAnimatedLength x2;
|
|
[SameObject] readonly attribute SVGAnimatedLength y2;
|
|
};
|