Browse Source

LibWeb: Add FIXMEs for missing SVGGeometryElement attributes

Jamie Mansfield 1 year ago
parent
commit
772d64aca2
1 changed files with 4 additions and 1 deletions
  1. 4 1
      Userland/Libraries/LibWeb/SVG/SVGGeometryElement.idl

+ 4 - 1
Userland/Libraries/LibWeb/SVG/SVGGeometryElement.idl

@@ -1,11 +1,14 @@
 #import <Geometry/DOMPoint.idl>
 #import <Geometry/DOMPoint.idl>
 #import <SVG/SVGGraphicsElement.idl>
 #import <SVG/SVGGraphicsElement.idl>
+#import <SVG/SVGAnimatedNumber.idl>
 
 
 // https://svgwg.org/svg2-draft/types.html#InterfaceSVGGeometryElement
 // https://svgwg.org/svg2-draft/types.html#InterfaceSVGGeometryElement
 [Exposed=Window]
 [Exposed=Window]
 interface SVGGeometryElement : SVGGraphicsElement {
 interface SVGGeometryElement : SVGGraphicsElement {
+    [FIXME, SameObject] readonly attribute SVGAnimatedNumber pathLength;
 
 
+    [FIXME] boolean isPointInFill(optional DOMPointInit point = {});
+    [FIXME] boolean isPointInStroke(optional DOMPointInit point = {});
     float getTotalLength();
     float getTotalLength();
     DOMPoint getPointAtLength(float distance);
     DOMPoint getPointAtLength(float distance);
-
 };
 };