LibWeb: Correct initial values for flex CSS properties

`flex-basis` and `flex-shrink` had different default values than are
dictated in the spec.
This commit is contained in:
Sam Atkins 2021-08-13 17:48:21 +01:00 committed by Andreas Kling
parent 2644d2c221
commit ab57d7b408
Notes: sideshowbarker 2024-07-18 06:58:54 +09:00

View file

@ -216,7 +216,7 @@
},
"flex-basis": {
"inherited": false,
"initial": "content"
"initial": "auto"
},
"flex-direction": {
"inherited": false,
@ -234,7 +234,7 @@
},
"flex-shrink": {
"inherited": false,
"initial": 0
"initial": 1
},
"flex-wrap": {
"inherited": false,