diff options
author | Tobias Christiansen <tobi@tobyase.de> | 2021-05-30 14:23:43 +0200 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-06-06 01:46:06 +0430 |
commit | ae3e6510d66b137d402d7d0d0adc5bb05f30e155 (patch) | |
tree | 232028e1ca098656b4e75f8b0898e8e01199de47 /Userland/Libraries/LibWeb/CSS/StyleProperties.h | |
parent | 27704f5f9ed87d3a93b9acd2d2bbe5916a3c9fd4 (diff) | |
download | serenity-ae3e6510d66b137d402d7d0d0adc5bb05f30e155.zip |
LibWeb: Parse flex-basis
Flex-basis accepts either 'content' or a Length.
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/StyleProperties.h')
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/StyleProperties.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/StyleProperties.h b/Userland/Libraries/LibWeb/CSS/StyleProperties.h index 3a14c745d7..3fe51836da 100644 --- a/Userland/Libraries/LibWeb/CSS/StyleProperties.h +++ b/Userland/Libraries/LibWeb/CSS/StyleProperties.h @@ -10,6 +10,7 @@ #include <AK/NonnullRefPtr.h> #include <LibGfx/Font.h> #include <LibGfx/Forward.h> +#include <LibWeb/CSS/ComputedValues.h> #include <LibWeb/CSS/LengthBox.h> #include <LibWeb/CSS/StyleValue.h> @@ -52,6 +53,7 @@ public: Optional<CSS::ListStyleType> list_style_type() const; Optional<CSS::FlexDirection> flex_direction() const; Optional<CSS::FlexWrap> flex_wrap() const; + Optional<CSS::FlexBasisData> flex_basis() const; Optional<CSS::Overflow> overflow_x() const; Optional<CSS::Overflow> overflow_y() const; Optional<CSS::Repeat> background_repeat_x() const; |