mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:27:45 +00:00
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:
parent
e883777a18
commit
04cc837db9
3 changed files with 19 additions and 0 deletions
|
@ -1,5 +1,9 @@
|
|||
#import <Geometry/DOMPoint.idl>
|
||||
#import <SVG/SVGGraphicsElement.idl>
|
||||
|
||||
interface SVGGeometryElement : SVGGraphicsElement {
|
||||
|
||||
float getTotalLength();
|
||||
DOMPoint getPointAtLength(float distance);
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue