diff options
Diffstat (limited to 'components/layout/text.rs')
-rw-r--r-- | components/layout/text.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/text.rs b/components/layout/text.rs index 2eb1945c6fe..358a386d887 100644 --- a/components/layout/text.rs +++ b/components/layout/text.rs @@ -8,12 +8,12 @@ use app_units::Au; use crate::context::LayoutFontContext; use crate::fragment::{Fragment, ScannedTextFlags}; use crate::fragment::{ScannedTextFragmentInfo, SpecificFragmentInfo, UnscannedTextFragmentInfo}; +use crate::inline::{InlineFragmentNodeFlags, InlineFragments}; +use crate::linked_list::split_off_head; use gfx::font::{FontRef, FontMetrics, RunMetrics, ShapingFlags, ShapingOptions}; use gfx::text::glyph::ByteIndex; use gfx::text::text_run::TextRun; use gfx::text::util::{self, CompressionMode}; -use crate::inline::{InlineFragmentNodeFlags, InlineFragments}; -use crate::linked_list::split_off_head; use ordered_float::NotNan; use range::Range; use servo_atoms::Atom; |