diff options
Diffstat (limited to 'components/layout/table_row.rs')
-rw-r--r-- | components/layout/table_row.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/layout/table_row.rs b/components/layout/table_row.rs index 5048644b755..e1cde61b361 100644 --- a/components/layout/table_row.rs +++ b/components/layout/table_row.rs @@ -444,8 +444,9 @@ impl Flow for TableRowFlow { fn iterate_through_fragment_border_boxes(&self, iterator: &mut FragmentBorderBoxIterator, + level: i32, stacking_context_position: &Point2D<Au>) { - self.block_flow.iterate_through_fragment_border_boxes(iterator, stacking_context_position) + self.block_flow.iterate_through_fragment_border_boxes(iterator, level, stacking_context_position) } fn mutate_fragments(&mut self, mutator: &mut FnMut(&mut Fragment)) { |