mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-02 04:20:28 +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: https://github.com/SerenityOS/serenity/commit/ab57d7b4086 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": {
|
||||
"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,
|
||||
|
|
Loading…
Reference in a new issue