diff options
author | Patrick Walton <pcwalton@mimiga.net> | 2015-04-14 12:22:18 -0700 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2015-04-14 13:00:11 -0700 |
commit | 82fcbf78704cce6f425d1d8a5abbdd58469e8eb0 (patch) | |
tree | 88a429e0bca1dbb1405e7d3f77062fc321465cd1 /components/layout/table_wrapper.rs | |
parent | acd08c67c63a9fb4d46e50411e134a1c6667ad89 (diff) | |
download | servo-82fcbf78704cce6f425d1d8a5abbdd58469e8eb0.tar.gz servo-82fcbf78704cce6f425d1d8a5abbdd58469e8eb0.zip |
layout: Minor stylistic cleanup.
Diffstat (limited to 'components/layout/table_wrapper.rs')
-rw-r--r-- | components/layout/table_wrapper.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/components/layout/table_wrapper.rs b/components/layout/table_wrapper.rs index f96e5efcd3c..290876e05b0 100644 --- a/components/layout/table_wrapper.rs +++ b/components/layout/table_wrapper.rs @@ -211,12 +211,14 @@ impl TableWrapperFlow { let solution = FloatNonReplaced.solve_inline_size_constraints(&mut self.block_flow, &input); FloatNonReplaced.set_inline_size_constraint_solutions(&mut self.block_flow, solution); - FloatNonReplaced.set_flow_x_coord_if_necessary(&mut self.block_flow, solution); + FloatNonReplaced.set_inline_position_of_flow_if_necessary(&mut self.block_flow, + solution); } else { let solution = BlockNonReplaced.solve_inline_size_constraints(&mut self.block_flow, &input); BlockNonReplaced.set_inline_size_constraint_solutions(&mut self.block_flow, solution); - BlockNonReplaced.set_flow_x_coord_if_necessary(&mut self.block_flow, solution); + BlockNonReplaced.set_inline_position_of_flow_if_necessary(&mut self.block_flow, + solution); } } } |