diff options
author | Luke Wilde <lukew@serenityos.org> | 2023-03-23 16:43:32 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-03-23 21:00:43 +0000 |
commit | 4c3f1481ea15fb855e62843674ede79bdecfe91d (patch) | |
tree | 87cc8fe9b9e160dde09067493fd1e84e2afd621f /Userland | |
parent | cb1deebc8fdb6f2ffccae68fdf46e871f6306afb (diff) | |
download | serenity-4c3f1481ea15fb855e62843674ede79bdecfe91d.zip |
LibWeb: Remove FIXME for existing `[Default] object toJSON()`functions
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibWeb/Geometry/DOMMatrixReadOnly.idl | 2 | ||||
-rw-r--r-- | 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 { |