diff options
Diffstat (limited to 'components/style_traits/lib.rs')
-rw-r--r-- | components/style_traits/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/components/style_traits/lib.rs b/components/style_traits/lib.rs index fd80c648b31..ef6604be006 100644 --- a/components/style_traits/lib.rs +++ b/components/style_traits/lib.rs @@ -91,8 +91,10 @@ pub mod values; #[macro_use] pub mod viewport; -pub use specified_value_info::{CssType, KeywordsCollectFn, SpecifiedValueInfo}; -pub use values::{Comma, CommaWithSpace, CssWriter, OneOrMoreSeparated, Separator, Space, ToCss}; +pub use crate::specified_value_info::{CssType, KeywordsCollectFn, SpecifiedValueInfo}; +pub use crate::values::{ + Comma, CommaWithSpace, CssWriter, OneOrMoreSeparated, Separator, Space, ToCss, +}; /// The error type for all CSS parsing routines. pub type ParseError<'i> = cssparser::ParseError<'i, StyleParseErrorKind<'i>>; |