mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-20 10:02:51 +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;
|
|
};
|