mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
11 lines
374 B
Plaintext
11 lines
374 B
Plaintext
#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;
|
|
};
|