diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2017-09-01 08:31:30 -0700 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2017-09-01 09:53:18 -0700 |
commit | 3ddb1fda743596a3bd1f1aad078fc01bcc165eff (patch) | |
tree | db5d9977d4492a9dd6a09d1466947295523294d8 /components/style/custom_properties.rs | |
parent | ce4e1e4194cb74d73f8aa974908c6229deccd15d (diff) | |
download | servo-3ddb1fda743596a3bd1f1aad078fc01bcc165eff.tar.gz servo-3ddb1fda743596a3bd1f1aad078fc01bcc165eff.zip |
Tidy fixes
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 a318fce8b80..6d72bb7b369 100644 --- a/components/style/custom_properties.rs +++ b/components/style/custom_properties.rs @@ -8,13 +8,13 @@ use Atom; use cssparser::{Delimiter, Parser, ParserInput, SourcePosition, Token, TokenSerializationType}; +use hash::{HashMap, HashSet}; use parser::ParserContext; use properties::{CSSWideKeyword, DeclaredValue}; use selectors::parser::SelectorParseError; use servo_arc::Arc; use std::ascii::AsciiExt; use std::borrow::{Borrow, Cow}; -use hash::{HashMap, HashSet}; use std::fmt; use std::hash::Hash; use style_traits::{ToCss, StyleParseError, ParseError}; |