mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
Pass SharedStyleContext to propagate_assigned_inline_size_to_children.
This commit is contained in:
parent
959f8c11cd
commit
21b8d2bd91
7 changed files with 11 additions and 11 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue