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

LibWeb: Reject negative values for flex-grow and flex-shrink

This commit is contained in:
Andreas Kling 2022-07-18 21:52:30 +02:00
parent f4c68eb0a4
commit 789f258412

View file

@ -586,14 +586,14 @@
"inherited": false, "inherited": false,
"initial": "0", "initial": "0",
"valid-types": [ "valid-types": [
"number" "number [0,∞]"
] ]
}, },
"flex-shrink": { "flex-shrink": {
"inherited": false, "inherited": false,
"initial": "1", "initial": "1",
"valid-types": [ "valid-types": [
"number" "number [0,∞]"
] ]
}, },
"order": { "order": {