diff --git a/components/layout/table_wrapper.rs b/components/layout/table_wrapper.rs index e57eef4d083..fd01546774d 100644 --- a/components/layout/table_wrapper.rs +++ b/components/layout/table_wrapper.rs @@ -477,6 +477,10 @@ impl Flow for TableWrapperFlow { fn print_extra_flow_children(&self, print_tree: &mut PrintTree) { self.block_flow.print_extra_flow_children(print_tree); } + + fn positioning(&self) -> position::T { + self.block_flow.positioning() + } } impl fmt::Debug for TableWrapperFlow {