diff options
Diffstat (limited to 'components/layout/table_row.rs')
-rw-r--r-- | components/layout/table_row.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/table_row.rs b/components/layout/table_row.rs index 42257ec5a76..dbeafead32e 100644 --- a/components/layout/table_row.rs +++ b/components/layout/table_row.rs @@ -110,7 +110,7 @@ impl TableRowFlow { let mut max_block_size = Au(0); let thread_id = self.block_flow.base.thread_id; for kid in self.block_flow.base.child_iter_mut() { - kid.place_float_if_applicable(layout_context); + kid.place_float_if_applicable(); if !flow::base(kid).flags.is_float() { kid.assign_block_size_for_inorder_child_if_necessary(layout_context, thread_id); } |