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
commit ba64d0462c
Notes: sideshowbarker 2024-07-17 18:46:57 +09:00
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);
}