Browse Source

LibWeb: Add FIXMEs for missing SVGElement attributes

Jamie Mansfield 1 year ago
parent
commit
c9f3a7ddbf
1 changed files with 3 additions and 0 deletions
  1. 3 0
      Userland/Libraries/LibWeb/SVG/SVGElement.idl

+ 3 - 0
Userland/Libraries/LibWeb/SVG/SVGElement.idl

@@ -9,6 +9,9 @@
 interface SVGElement : Element {
 interface SVGElement : Element {
 
 
     [SameObject] readonly attribute SVGAnimatedString className;
     [SameObject] readonly attribute SVGAnimatedString className;
+
+    [FIXME] readonly attribute SVGSVGElement? ownerSVGElement;
+    [FIXME] readonly attribute SVGElement? viewportElement;
 };
 };
 
 
 SVGElement includes GlobalEventHandlers;
 SVGElement includes GlobalEventHandlers;