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:
Tobias Christiansen 2021-08-06 22:00:25 +02:00 committed by Andreas Kling
commit 833936f3ec
Notes: sideshowbarker 2024-07-18 07:19:00 +09:00
4 changed files with 7 additions and 2 deletions

View file

@ -41,7 +41,7 @@ public:
};
struct FlexBasisData {
CSS::FlexBasis type { CSS::FlexBasis::Content };
CSS::FlexBasis type { CSS::FlexBasis::Auto };
CSS::Length length {};
};