diff options
Diffstat (limited to 'components/style/servo/url.rs')
-rw-r--r-- | components/style/servo/url.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/servo/url.rs b/components/style/servo/url.rs index 56213e4978e..e3a4f76b50a 100644 --- a/components/style/servo/url.rs +++ b/components/style/servo/url.rs @@ -4,16 +4,16 @@ //! Common handling for the specified value CSS url() values. +use crate::parser::{Parse, ParserContext}; use cssparser::Parser; -use parser::{Parse, ParserContext}; use servo_url::ServoUrl; use std::fmt::{self, Write}; // Note: We use std::sync::Arc rather than servo_arc::Arc here because the // nonzero optimization is important in keeping the size of SpecifiedUrl below // the threshold. +use crate::values::computed::{Context, ToComputedValue}; use std::sync::Arc; use style_traits::{CssWriter, ParseError, ToCss}; -use values::computed::{Context, ToComputedValue}; /// A CSS url() value for servo. /// |