diff options
author | Oriol Brufau <obrufau@igalia.com> | 2024-12-23 14:36:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-23 22:36:16 +0000 |
commit | c17dddb27dbd8103a577e12a83384d1e1b35a33e (patch) | |
tree | c1930412e76f277bb3f329706a4d11b0466ffb68 /components | |
parent | 8cf7de49431f564a0129d7fbb78b32cd13e45927 (diff) | |
download | servo-c17dddb27dbd8103a577e12a83384d1e1b35a33e.tar.gz servo-c17dddb27dbd8103a577e12a83384d1e1b35a33e.zip |
layout: Pass the right containing block to `find_block_margin_collapsing_with_parent_from_slice()` (#34725)
Signed-off-by: Oriol Brufau <obrufau@igalia.com>
Diffstat (limited to 'components')
-rw-r--r-- | components/layout_2020/flow/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout_2020/flow/mod.rs b/components/layout_2020/flow/mod.rs index 62bb828374a..185143f425c 100644 --- a/components/layout_2020/flow/mod.rs +++ b/components/layout_2020/flow/mod.rs @@ -886,7 +886,7 @@ fn layout_in_flow_non_replaced_block_level_same_formatting_context( layout_context, child_boxes, &mut block_start_margin, - containing_block, + &containing_block_for_children, ); } } |