File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Userland/Libraries/LibWeb/Layout Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -849,9 +849,9 @@ void FormattingContext::compute_height_for_absolutely_positioned_non_replaced_el
849
849
auto const & computed_max_height = box.computed_values ().max_height ();
850
850
851
851
if (!computed_max_height.is_none ())
852
- used_height = min (used_height, computed_max_height.resolved (box, height_of_containing_block_as_length). resolved (box). to_px (box ));
852
+ used_height = min (used_height, computed_max_height.to_px (box, height_of_containing_block ));
853
853
if (!computed_min_height.is_auto ())
854
- used_height = max (used_height, computed_min_height.resolved (box, height_of_containing_block_as_length). resolved (box). to_px (box ));
854
+ used_height = max (used_height, computed_min_height.to_px (box, height_of_containing_block ));
855
855
856
856
// NOTE: The following is not directly part of any spec, but this is where we resolve
857
857
// the final used values for vertical margin/border/padding.
You can’t perform that action at this time.
0 commit comments