ladybird/Userland/Libraries/LibWeb/SVG/SVGGeometryElement.idl
Andreas Kling 04cc837db9 LibWeb: Stub out two functions on SVGGeometryElement
These two were called by Discord while loading:

- float getTotalLength();
- DOMPoint getPointAtLength(float distance);
2022-07-12 23:12:11 +02:00

9 lines
202 B
Text

#import <Geometry/DOMPoint.idl>
#import <SVG/SVGGraphicsElement.idl>
interface SVGGeometryElement : SVGGraphicsElement {
float getTotalLength();
DOMPoint getPointAtLength(float distance);
};