diff options
Diffstat (limited to 'components/style/custom_properties.rs')
-rw-r--r-- | components/style/custom_properties.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/custom_properties.rs b/components/style/custom_properties.rs index 7f91c93378b..630fb4ba116 100644 --- a/components/style/custom_properties.rs +++ b/components/style/custom_properties.rs @@ -6,7 +6,6 @@ //! //! [custom]: https://drafts.csswg.org/css-variables/ -use Atom; use cssparser::{Delimiter, Parser, ParserInput, SourcePosition, Token, TokenSerializationType}; use hash::map::Entry; use precomputed_hash::PrecomputedHash; @@ -20,6 +19,7 @@ use std::cmp; use std::fmt::{self, Write}; use std::hash::Hash; use style_traits::{CssWriter, ParseError, StyleParseErrorKind, ToCss}; +use Atom; /// The environment from which to get `env` function values. /// |