aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/formatting_contexts.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/layout/formatting_contexts.rs')
-rw-r--r--components/layout/formatting_contexts.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/layout/formatting_contexts.rs b/components/layout/formatting_contexts.rs
index 3942af63312..a489df2b663 100644
--- a/components/layout/formatting_contexts.rs
+++ b/components/layout/formatting_contexts.rs
@@ -243,7 +243,7 @@ impl IndependentNonReplacedContents {
containing_block_for_children: &ContainingBlock,
containing_block: &ContainingBlock,
depends_on_block_constraints: bool,
- _lazy_block_size: &LazySize,
+ lazy_block_size: &LazySize,
) -> CacheableLayoutResult {
match self {
IndependentNonReplacedContents::Flow(bfc) => bfc.layout(
@@ -257,6 +257,7 @@ impl IndependentNonReplacedContents {
positioning_context,
containing_block_for_children,
depends_on_block_constraints,
+ lazy_block_size,
),
IndependentNonReplacedContents::Grid(fc) => fc.layout(
layout_context,