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

LibWeb: Rename confusing parameter to layout_block_level_box()

It wasn't the content height, but rather the the bottom edge of the
lowest margin box.
This commit is contained in:
Andreas Kling 2022-09-08 14:31:35 +02:00
parent af73a5d921
commit 7ba6eb37fc
2 changed files with 7 additions and 7 deletions

View file

@ -47,7 +47,7 @@ public:
void layout_floating_box(Box const& child, BlockContainer const& containing_block, LayoutMode, LineBuilder* = nullptr);
void layout_block_level_box(Box const&, BlockContainer const&, LayoutMode, float& content_height);
void layout_block_level_box(Box const&, BlockContainer const&, LayoutMode, float& bottom_of_lowest_margin_box);
private:
virtual bool is_block_formatting_context() const final { return true; }