mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 14:19:48 +00:00
LibWeb: Replaced remaining usage and delete Size::resolved()
This commit is contained in:
parent
76152845fd
commit
7225087fa2
Notes:
github-actions[bot]
2024-10-06 17:26:10 +00:00
Author: https://github.com/kalenikaliaksandr
Commit: 7225087fa2
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1651
3 changed files with 2 additions and 10 deletions
|
@ -1600,7 +1600,7 @@ CSSPixels FormattingContext::calculate_inner_width(Layout::Box const& box, Avail
|
|||
return max(inner_width, 0);
|
||||
}
|
||||
|
||||
return width.resolved(box, width_of_containing_block).to_px(box);
|
||||
return width.to_px(box, width_of_containing_block);
|
||||
}
|
||||
|
||||
CSSPixels FormattingContext::calculate_inner_height(Layout::Box const& box, AvailableSize const& available_height, CSS::Size const& height) const
|
||||
|
@ -1618,7 +1618,7 @@ CSSPixels FormattingContext::calculate_inner_height(Layout::Box const& box, Avai
|
|||
return max(inner_height, 0);
|
||||
}
|
||||
|
||||
return height.resolved(box, height_of_containing_block).to_px(box);
|
||||
return height.to_px(box, height_of_containing_block);
|
||||
}
|
||||
|
||||
CSSPixels FormattingContext::containing_block_width_for(NodeWithStyleAndBoxModelMetrics const& node) const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue