mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 20:25:07 +00:00
10 lines
374 B
Text
10 lines
374 B
Text
#import <SVG/SVGAnimatedLength.idl>
|
|
#import <SVG/SVGGeometryElement.idl>
|
|
|
|
[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;
|
|
};
|