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

LibWeb: Allow percentages on CSS transform scale functions

This commit is contained in:
Bastiaan van der Plaat 2024-01-08 18:51:19 +01:00 committed by Andreas Kling
parent 57ea3e160a
commit c443f80137
9 changed files with 63 additions and 11 deletions

View file

@ -150,11 +150,11 @@
"scale": {
"parameters": [
{
"type": "<number>",
"type": "<number-percentage>",
"required": true
},
{
"type": "<number>",
"type": "<number-percentage>",
"required": false
}
]
@ -162,7 +162,7 @@
"scaleX": {
"parameters": [
{
"type": "<number>",
"type": "<number-percentage>",
"required": true
}
]
@ -170,7 +170,7 @@
"scaleY": {
"parameters": [
{
"type": "<number>",
"type": "<number-percentage>",
"required": true
}
]