diff options
Diffstat (limited to 'components/layout/table_cell.rs')
-rw-r--r-- | components/layout/table_cell.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/table_cell.rs b/components/layout/table_cell.rs index 7ef02e28db6..ec1cfe5c9af 100644 --- a/components/layout/table_cell.rs +++ b/components/layout/table_cell.rs @@ -230,8 +230,8 @@ impl Flow for TableCellFlow { self.assign_block_size_table_cell_base(layout_context); } - fn compute_absolute_position(&mut self, layout_context: &LayoutContext) { - self.block_flow.compute_absolute_position(layout_context) + fn compute_stacking_relative_position(&mut self, layout_context: &LayoutContext) { + self.block_flow.compute_stacking_relative_position(layout_context) } fn update_late_computed_inline_position_if_necessary(&mut self, inline_position: Au) { |