From 4c3f1481ea15fb855e62843674ede79bdecfe91d Mon Sep 17 00:00:00 2001 From: Luke Wilde Date: Thu, 23 Mar 2023 16:43:32 +0000 Subject: [PATCH] LibWeb: Remove FIXME for existing `[Default] object toJSON()`functions --- Userland/Libraries/LibWeb/Geometry/DOMMatrixReadOnly.idl | 2 +- Userland/Libraries/LibWeb/Geometry/DOMPointReadOnly.idl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibWeb/Geometry/DOMMatrixReadOnly.idl b/Userland/Libraries/LibWeb/Geometry/DOMMatrixReadOnly.idl index c04c36429f..3e2b43e72f 100644 --- a/Userland/Libraries/LibWeb/Geometry/DOMMatrixReadOnly.idl +++ b/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 { diff --git a/Userland/Libraries/LibWeb/Geometry/DOMPointReadOnly.idl b/Userland/Libraries/LibWeb/Geometry/DOMPointReadOnly.idl index 302f3ad8f3..4e3e5475e6 100644 --- a/Userland/Libraries/LibWeb/Geometry/DOMPointReadOnly.idl +++ b/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 {