1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:47:44 +00:00

LibWeb: Add DOMQuad and text tests

This commit is contained in:
Bastiaan van der Plaat 2023-08-20 22:03:41 +02:00 committed by Sam Atkins
parent e4270bc01d
commit c88f14902b
11 changed files with 218 additions and 0 deletions

View file

@ -6,6 +6,7 @@ source_set("Geometry") {
"DOMMatrixReadOnly.cpp",
"DOMPoint.cpp",
"DOMPointReadOnly.cpp",
"DOMQuad.cpp",
"DOMRect.cpp",
"DOMRectList.cpp",
"DOMRectReadOnly.cpp",

View file

@ -85,6 +85,7 @@ standard_idl_files = [
"//Userland/Libraries/LibWeb/Geometry/DOMMatrixReadOnly.idl",
"//Userland/Libraries/LibWeb/Geometry/DOMPoint.idl",
"//Userland/Libraries/LibWeb/Geometry/DOMPointReadOnly.idl",
"//Userland/Libraries/LibWeb/Geometry/DOMQuad.idl",
"//Userland/Libraries/LibWeb/Geometry/DOMRect.idl",
"//Userland/Libraries/LibWeb/Geometry/DOMRectList.idl",
"//Userland/Libraries/LibWeb/Geometry/DOMRectReadOnly.idl",