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

LibWeb: Remove vestigial resolve_definite_width/height helper functions

These functions no longer do anything interesting and just forward to
content_width/content_height. Let's make the callers use those directly
instead and remove this indirection layer.
This commit is contained in:
Andreas Kling 2023-05-01 17:49:31 +02:00
parent e98315de6b
commit deea7cbc11
4 changed files with 6 additions and 31 deletions

View file

@ -118,8 +118,6 @@ private:
bool has_definite_cross_size(Box const&) const;
CSSPixels inner_main_size(Box const&) const;
CSSPixels inner_cross_size(Box const&) const;
CSSPixels resolved_definite_main_size(FlexItem const&) const;
CSSPixels resolved_definite_cross_size(FlexItem const&) const;
bool has_main_min_size(Box const&) const;
bool has_cross_min_size(Box const&) const;
CSSPixels specified_main_max_size(Box const&) const;