mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
layout: Implement TableWrapper::positioning()
.
The base `Flow` implementation returns the incorrect value.
This commit is contained in:
parent
8b138e5e75
commit
2ffdfbd046
1 changed files with 4 additions and 0 deletions
|
@ -477,6 +477,10 @@ impl Flow for TableWrapperFlow {
|
||||||
fn print_extra_flow_children(&self, print_tree: &mut PrintTree) {
|
fn print_extra_flow_children(&self, print_tree: &mut PrintTree) {
|
||||||
self.block_flow.print_extra_flow_children(print_tree);
|
self.block_flow.print_extra_flow_children(print_tree);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn positioning(&self) -> position::T {
|
||||||
|
self.block_flow.positioning()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Debug for TableWrapperFlow {
|
impl fmt::Debug for TableWrapperFlow {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue