mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-12 11:09:18 +00:00
LibWeb: Parse flex-basis
Flex-basis accepts either 'content' or a Length.
This commit is contained in:
parent
27704f5f9e
commit
ae3e6510d6
Notes:
sideshowbarker
2024-07-18 16:49:45 +09:00
Author: https://github.com/TobyAsE
Commit: ae3e6510d6
Pull-request: https://github.com/SerenityOS/serenity/pull/7669
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/awesomekling
7 changed files with 39 additions and 0 deletions
|
@ -86,6 +86,11 @@ enum class FlexWrap {
|
|||
WrapReverse
|
||||
};
|
||||
|
||||
enum class FlexBasis {
|
||||
Content,
|
||||
Length
|
||||
};
|
||||
|
||||
enum class WhiteSpace {
|
||||
Normal,
|
||||
Pre,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue