diff --git a/Userland/Libraries/LibWeb/SVG/SVGGeometryElement.idl b/Userland/Libraries/LibWeb/SVG/SVGGeometryElement.idl index 33b712b2a6b..e2b181034de 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGGeometryElement.idl +++ b/Userland/Libraries/LibWeb/SVG/SVGGeometryElement.idl @@ -1,11 +1,14 @@ #import #import +#import // https://svgwg.org/svg2-draft/types.html#InterfaceSVGGeometryElement [Exposed=Window] interface SVGGeometryElement : SVGGraphicsElement { + [FIXME, SameObject] readonly attribute SVGAnimatedNumber pathLength; + [FIXME] boolean isPointInFill(optional DOMPointInit point = {}); + [FIXME] boolean isPointInStroke(optional DOMPointInit point = {}); float getTotalLength(); DOMPoint getPointAtLength(float distance); - };