1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:07:35 +00:00

Tests/LibWeb: Add tests for CSSPixels class

After the CSSPixels implementation evolved from a wrapper of double
to a fixed-point saturated math arithmetic implementation, it makes
sense to have separate tests for it.
This commit is contained in:
Aliaksandr Kalenik 2023-07-23 02:19:57 +02:00 committed by Andreas Kling
parent bec07d4af7
commit 0f21b35d1c
2 changed files with 80 additions and 0 deletions

View file

@ -1,5 +1,6 @@
set(TEST_SOURCES
TestCSSIDSpeed.cpp
TestCSSPixels.cpp
TestHTMLTokenizer.cpp
)