소스 검색

LibWeb: Add FIXMEs for missing SVGElement attributes

Jamie Mansfield 1 년 전
부모
커밋
c9f3a7ddbf
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      Userland/Libraries/LibWeb/SVG/SVGElement.idl

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

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