diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-06-21 14:06:30 +0200 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-06-22 14:28:14 +0200 |
commit | 21b8d2bd91a7199399d55805f709448ca410a8b9 (patch) | |
tree | 56755091af449918388180497266b7a33b0fe304 /components/layout/table_wrapper.rs | |
parent | 959f8c11cddfa5ec066a40904f8eafb7ad75229d (diff) | |
download | servo-21b8d2bd91a7199399d55805f709448ca410a8b9.tar.gz servo-21b8d2bd91a7199399d55805f709448ca410a8b9.zip |
Pass SharedStyleContext to propagate_assigned_inline_size_to_children.
Diffstat (limited to 'components/layout/table_wrapper.rs')
-rw-r--r-- | components/layout/table_wrapper.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/table_wrapper.rs b/components/layout/table_wrapper.rs index 574d275af12..a3fab380ae0 100644 --- a/components/layout/table_wrapper.rs +++ b/components/layout/table_wrapper.rs @@ -376,7 +376,7 @@ impl Flow for TableWrapperFlow { match assigned_column_inline_sizes { None => { self.block_flow - .propagate_assigned_inline_size_to_children(layout_context, + .propagate_assigned_inline_size_to_children(layout_context.shared_context(), inline_start_content_edge, inline_end_content_edge, content_inline_size, @@ -384,7 +384,7 @@ impl Flow for TableWrapperFlow { } Some(ref assigned_column_inline_sizes) => { self.block_flow - .propagate_assigned_inline_size_to_children(layout_context, + .propagate_assigned_inline_size_to_children(layout_context.shared_context(), inline_start_content_edge, inline_end_content_edge, content_inline_size, |