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

LibWeb: Add the 'float' CSS property to LayoutStyle

Note that we don't use the property for anything yet, as I'm still
wrapping my head around how to implement floats.
This commit is contained in:
Andreas Kling 2020-06-26 15:08:42 +02:00
parent 53f1090b86
commit 62daa6f73c
6 changed files with 38 additions and 0 deletions

View file

@ -62,6 +62,7 @@ public:
Color color_or_fallback(CSS::PropertyID, const Document&, Color fallback) const;
CSS::TextAlign text_align() const;
CSS::Display display() const;
Optional<CSS::Float> float_() const;
Optional<CSS::WhiteSpace> white_space() const;
const Gfx::Font& font() const