1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:47:35 +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

@ -181,6 +181,7 @@ public:
};
virtual void paint(PaintContext&, PaintPhase);
bool is_floating() const;
bool is_absolutely_positioned() const;
bool is_fixed_position() const;