layout: Implement TableWrapper::positioning().

The base `Flow` implementation returns the incorrect value.
This commit is contained in:
Patrick Walton 2016-10-24 18:12:16 -07:00
parent 8b138e5e75
commit 2ffdfbd046

View file

@ -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 {