1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:27:35 +00:00

LibWeb: Parse and store the opacity property

This commit is contained in:
Egor Ananyin 2021-07-23 13:18:09 +03:00 committed by Ali Mohammad Pur
parent 495f69b76b
commit 0e6ba6e1d3
5 changed files with 23 additions and 0 deletions

View file

@ -56,6 +56,7 @@ public:
Optional<CSS::FlexBasisData> flex_basis() const;
Optional<float> flex_grow_factor() const;
Optional<float> flex_shrink_factor() const;
Optional<float> opacity() const;
Optional<CSS::JustifyContent> justify_content() const;
Optional<CSS::Overflow> overflow_x() const;
Optional<CSS::Overflow> overflow_y() const;