diff options
Diffstat (limited to 'components/style/font_metrics.rs')
-rw-r--r-- | components/style/font_metrics.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/style/font_metrics.rs b/components/style/font_metrics.rs index e093f13ef18..21c89fe06f0 100644 --- a/components/style/font_metrics.rs +++ b/components/style/font_metrics.rs @@ -7,11 +7,11 @@ #![deny(missing_docs)] use app_units::Au; -use context::SharedStyleContext; -use logical_geometry::WritingMode; -use media_queries::Device; -use properties::style_structs::Font; -use Atom; +use crate::context::SharedStyleContext; +use crate::logical_geometry::WritingMode; +use crate::media_queries::Device; +use crate::properties::style_structs::Font; +use crate::Atom; /// Represents the font metrics that style needs from a font to compute the /// value of certain CSS units like `ex`. |