1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:17:34 +00:00

LibWeb: Support translate3d

This commit is contained in:
Aliaksandr Kalenik 2022-10-28 02:46:27 +03:00 committed by Sam Atkins
parent f099e2aa12
commit e4db71c88b
4 changed files with 36 additions and 1 deletions

View file

@ -35,6 +35,13 @@
{ "type": "<length-percentage>", "required": false }
]
},
"translate3d": {
"parameters": [
{ "type": "<length-percentage>", "required": true },
{ "type": "<length-percentage>", "required": true },
{ "type": "<length>", "required": true }
]
},
"translateX": {
"parameters": [{ "type": "<length-percentage>", "required": true }]
},