LibWeb: Add flex-grow and flex-shrink

They get parsed and are available to the programmer of Layouts :^)
This commit is contained in:
Tobias Christiansen 2021-05-30 20:22:25 +02:00 committed by Ali Mohammad Pur
commit ae61e9ded2
Notes: sideshowbarker 2024-07-18 16:34:50 +09:00
5 changed files with 46 additions and 1 deletions

View file

@ -54,6 +54,8 @@ public:
Optional<CSS::FlexDirection> flex_direction() const;
Optional<CSS::FlexWrap> flex_wrap() const;
Optional<CSS::FlexBasisData> flex_basis() const;
Optional<float> flex_grow_factor() const;
Optional<float> flex_shrink_factor() const;
Optional<CSS::Overflow> overflow_x() const;
Optional<CSS::Overflow> overflow_y() const;
Optional<CSS::Repeat> background_repeat_x() const;