diff options
Diffstat (limited to 'components/layout/table_rowgroup.rs')
-rw-r--r-- | components/layout/table_rowgroup.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/components/layout/table_rowgroup.rs b/components/layout/table_rowgroup.rs index e21aedfc5ab..10eb65f6c84 100644 --- a/components/layout/table_rowgroup.rs +++ b/components/layout/table_rowgroup.rs @@ -20,6 +20,8 @@ use wrapper::ThreadSafeLayoutNode; use servo_util::geometry::Au; use std::fmt; +use style::ComputedValues; +use sync::Arc; /// A table formatting context. #[deriving(Encodable)] @@ -205,6 +207,10 @@ impl Flow for TableRowGroupFlow { debug!("build_display_list_table_rowgroup: same process as block flow"); self.block_flow.build_display_list(layout_context) } + + fn repair_style(&mut self, new_style: &Arc<ComputedValues>) { + self.block_flow.repair_style(new_style) + } } impl fmt::Show for TableRowGroupFlow { |