LibWeb: Stub out two functions on SVGGeometryElement

These two were called by Discord while loading:

- float getTotalLength();
- DOMPoint getPointAtLength(float distance);
This commit is contained in:
Andreas Kling 2022-07-12 20:07:35 +02:00
commit 04cc837db9
Notes: sideshowbarker 2024-07-17 09:26:24 +09:00
3 changed files with 19 additions and 0 deletions

View file

@ -1,5 +1,9 @@
#import <Geometry/DOMPoint.idl>
#import <SVG/SVGGraphicsElement.idl>
interface SVGGeometryElement : SVGGraphicsElement {
float getTotalLength();
DOMPoint getPointAtLength(float distance);
};