summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/SVG/SVGLineElement.idl
blob: 9f68b9b7712f6b1e3b0f9456206f91741bdfd116 (plain)
1
2
3
4
5
6
7
8
9
10
#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;
};