aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout_2020/flow/inline.rs
diff options
context:
space:
mode:
authoratbrakhi <atbrakhi@igalia.com>2024-01-22 10:28:19 +0100
committerGitHub <noreply@github.com>2024-01-22 09:28:19 +0000
commit8e6bdb69b1b5110ac7fce5801d8ee3e9fd7c6354 (patch)
tree565a5b525ecbfb89dfc0a8369043054950e5e8e5 /components/layout_2020/flow/inline.rs
parent8dcf3dd0b0fee0658fea43645db266be32eb2c11 (diff)
downloadservo-8e6bdb69b1b5110ac7fce5801d8ee3e9fd7c6354.tar.gz
servo-8e6bdb69b1b5110ac7fce5801d8ee3e9fd7c6354.zip
Layout: Clean up `Au` conversion helper functions in the flexbox (#31137)
* cleanup helper functions in flexbox * fmt
Diffstat (limited to 'components/layout_2020/flow/inline.rs')
-rw-r--r--components/layout_2020/flow/inline.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/layout_2020/flow/inline.rs b/components/layout_2020/flow/inline.rs
index 88152e20d53..05b02685549 100644
--- a/components/layout_2020/flow/inline.rs
+++ b/components/layout_2020/flow/inline.rs
@@ -2405,6 +2405,7 @@ impl<'a> ContentSizesComputation<'a> {
had_non_whitespace_content_yet: false,
linebreaker: None,
ending_inline_pbm_stack: Vec::new(),
- }.traverse(inline_formatting_context)
+ }
+ .traverse(inline_formatting_context)
}
}