mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:47:45 +00:00
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:
parent
2644d2c221
commit
ab57d7b408
1 changed files with 2 additions and 2 deletions
|
@ -216,7 +216,7 @@
|
||||||
},
|
},
|
||||||
"flex-basis": {
|
"flex-basis": {
|
||||||
"inherited": false,
|
"inherited": false,
|
||||||
"initial": "content"
|
"initial": "auto"
|
||||||
},
|
},
|
||||||
"flex-direction": {
|
"flex-direction": {
|
||||||
"inherited": false,
|
"inherited": false,
|
||||||
|
@ -234,7 +234,7 @@
|
||||||
},
|
},
|
||||||
"flex-shrink": {
|
"flex-shrink": {
|
||||||
"inherited": false,
|
"inherited": false,
|
||||||
"initial": 0
|
"initial": 1
|
||||||
},
|
},
|
||||||
"flex-wrap": {
|
"flex-wrap": {
|
||||||
"inherited": false,
|
"inherited": false,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue