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

LibWeb: Rename function to find table box width inside table wrapper

compute_table_box_width_inside_table_wrapper should be a better name
considering what this function does.
This commit is contained in:
Aliaksandr Kalenik 2023-05-07 02:59:39 +03:00 committed by Andreas Kling
parent 3a605d8c19
commit 038283f3fc
2 changed files with 3 additions and 3 deletions

View file

@ -58,7 +58,7 @@ private:
void compute_width_for_block_level_replaced_element_in_normal_flow(ReplacedBox const&, AvailableSpace const&);
CSSPixels compute_width_for_table_wrapper(Box const&, AvailableSpace const&);
CSSPixels compute_table_box_width_inside_table_wrapper(Box const&, AvailableSpace const&);
void layout_viewport(LayoutMode, AvailableSpace const&);