diff options
author | Pyfisch <pyfisch@gmail.com> | 2018-11-06 13:01:35 +0100 |
---|---|---|
committer | Pyfisch <pyfisch@gmail.com> | 2018-11-06 22:30:31 +0100 |
commit | cb07debcb6f3d3561177ce536c320986720791b7 (patch) | |
tree | ccac4d5a48b3112230f3fc2e873753dd7263e9fb /components/layout/block.rs | |
parent | bf47f90da667e95eaffc8fee36ca8a88e72e276c (diff) | |
download | servo-cb07debcb6f3d3561177ce536c320986720791b7.tar.gz servo-cb07debcb6f3d3561177ce536c320986720791b7.zip |
Format remaining files
Diffstat (limited to 'components/layout/block.rs')
-rw-r--r-- | components/layout/block.rs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/components/layout/block.rs b/components/layout/block.rs index 76fb026ae0b..99ca7ada523 100644 --- a/components/layout/block.rs +++ b/components/layout/block.rs @@ -1334,7 +1334,8 @@ impl BlockFlow { self.fragment.style.writing_mode, inline_size_for_float_placement, block_size + self.fragment.margin.block_start_end(), - ).convert( + ) + .convert( self.fragment.style.writing_mode, self.base.floats.writing_mode, ), @@ -1361,7 +1362,8 @@ impl BlockFlow { self.base.floats.writing_mode, self.base.writing_mode, container_size, - ).start; + ) + .start; let margin_offset = LogicalPoint::new( self.base.writing_mode, Au(0), @@ -2626,7 +2628,8 @@ impl Flow for BlockFlow { .early_absolute_position_info .relative_containing_block_mode, CoordinateSystem::Own, - ).translate(&stacking_context_position.to_vector()), + ) + .translate(&stacking_context_position.to_vector()), ); } |