1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 20:28:11 +00:00

LibWeb: Don't place floating boxes before everything else

Instead, just handle them as we go about laying out block-level boxes.
This commit is contained in:
Andreas Kling 2020-12-12 19:31:46 +01:00
parent ec89302fbe
commit 66e9dde86f
2 changed files with 3 additions and 15 deletions

View file

@ -61,7 +61,6 @@ private:
void layout_block_level_children(Box&, LayoutMode);
void layout_inline_children(Box&, LayoutMode);
void layout_floating_children(Box&);
void place_block_level_replaced_element_in_normal_flow(Box& child, Box& container);
void place_block_level_non_replaced_element_in_normal_flow(Box& child, Box& container);