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

LibWeb: Move box_baseline from LineBuilder.cpp to LayoutState.cpp

This commit is contained in:
Aliaksandr Kalenik 2022-12-04 19:51:29 +03:00 committed by Andreas Kling
parent 2f38f8c84a
commit ba64d0462c
3 changed files with 27 additions and 26 deletions

View file

@ -184,5 +184,6 @@ Gfx::FloatRect border_box_rect(Box const&, LayoutState const&);
Gfx::FloatRect border_box_rect_in_ancestor_coordinate_space(Box const& box, Box const& ancestor_box, LayoutState const&);
Gfx::FloatRect content_box_rect(Box const&, LayoutState const&);
Gfx::FloatRect content_box_rect_in_ancestor_coordinate_space(Box const& box, Box const& ancestor_box, LayoutState const&);
float box_baseline(LayoutState const& state, Box const& box);
}