mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-07 01:56:38 +00:00
LibWeb: Add auto as a recognized argument of flex-basis
There isn't actually any special treatment of this over 'content' in the FlexFormattingContext, for now both are treated the same. This fixes #9225
This commit is contained in:
parent
6852ba4d34
commit
833936f3ec
Notes:
sideshowbarker
2024-07-18 07:19:00 +09:00
Author: https://github.com/TobyAsE
Commit: 833936f3ec
Pull-request: https://github.com/SerenityOS/serenity/pull/9247
Issue: https://github.com/SerenityOS/serenity/issues/9225
4 changed files with 7 additions and 2 deletions
|
@ -96,7 +96,8 @@ enum class FlexWrap {
|
|||
|
||||
enum class FlexBasis {
|
||||
Content,
|
||||
Length
|
||||
Length,
|
||||
Auto,
|
||||
};
|
||||
|
||||
enum class WhiteSpace {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue