Fix calculation of block axis for abspos elements

The calculation of the block axis positioning of absolutely positioned
elements was using the inline size of the containing block instead of
the block size.
This commit is contained in:
Martin Robinson 2023-04-14 11:15:16 +02:00
parent 15f966bde5
commit c23f05583b
10 changed files with 3 additions and 28 deletions

View file

@ -458,8 +458,7 @@ impl HoistedAbsolutelyPositionedBox {
};
let solve_block_axis = |computed_size| {
solve_axis(
// TODO(delan) shouldnt this be cbbs?
cbis,
cbbs,
pbm.padding_border_sums.block,
pbm.margin.block_start,
pbm.margin.block_end,