Forráskód Böngészése

LibWeb: Remove FIXME for existing `[Default] object toJSON()`functions

Luke Wilde 2 éve
szülő
commit
4c3f1481ea

+ 1 - 1
Userland/Libraries/LibWeb/Geometry/DOMMatrixReadOnly.idl

@@ -57,7 +57,7 @@ interface DOMMatrixReadOnly {
     // FIXME: [NewObject] Float64Array toFloat64Array();
 
     [Exposed=Window] stringifier;
-    // FIXME: [Default] object toJSON();
+    [Default] object toJSON();
 };
 
 dictionary DOMMatrix2DInit {

+ 1 - 1
Userland/Libraries/LibWeb/Geometry/DOMPointReadOnly.idl

@@ -14,7 +14,7 @@ interface DOMPointReadOnly {
 
     // FIXME: DOMPoint matrixTransform(optional DOMMatrixInit matrix = {});
 
-    // FIXME: [Default] object toJSON();
+    [Default] object toJSON();
 };
 
 dictionary DOMPointInit {