mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-10 11:36:22 +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
Notes:
sideshowbarker
2024-07-18 06:58:54 +09:00
Author: https://github.com/AtkinsSJ
Commit: ab57d7b408
Pull-request: https://github.com/SerenityOS/serenity/pull/9301
Reviewed-by: https://github.com/TobyAsE
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