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

LibWeb: Add missing CSS Transforms Module Level 2 functions

This commit is contained in:
Bastiaan van der Plaat 2024-01-08 18:51:48 +01:00 committed by Andreas Kling
parent c443f80137
commit 675b242e84
6 changed files with 117 additions and 1 deletions

View file

@ -13,6 +13,9 @@
"none",
"matrix(1, 2, 3, 4, 5, 6)",
"matrix3d(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)",
"perspective(none)",
"perspective(0)",
"perspective(4cm)",
"translate(1%, 2px)",
"translate3d(1%, 2px, 3em)",
"translateX(1px)",
@ -23,10 +26,15 @@
"scaleX(200%)",
"scaleY(2.5)",
"scaleY(250%)",
"scaleZ(1.5)",
"scaleZ(150%)",
"scale3d(1, 2, 1.5)",
"scale3d(100%, 200%, 150%)",
"rotate(1deg)",
"rotateX(1rad)",
"rotateY(1grad)",
"rotateZ(1turn)",
"rotate3d(0, 1, 0, 45rad)",
"skew(1deg, 1rad)",
"skewX(1deg)",
"skewY(1rad)",