diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-11-01 14:09:54 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-11-10 17:47:28 +0100 |
commit | a15d33a10e8a0aa1c02fa44ede50a63b95606b8f (patch) | |
tree | 5b0ef37530e77e646c2b6bc7df3d95e756607e77 /components/style/attr.rs | |
parent | e1fcffb336d763d851f14fae5cda464209552bb2 (diff) | |
download | servo-a15d33a10e8a0aa1c02fa44ede50a63b95606b8f.tar.gz servo-a15d33a10e8a0aa1c02fa44ede50a63b95606b8f.zip |
`cargo fix --edition`
Diffstat (limited to 'components/style/attr.rs')
-rw-r--r-- | components/style/attr.rs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/components/style/attr.rs b/components/style/attr.rs index 158875ea327..f08ab9b42d1 100644 --- a/components/style/attr.rs +++ b/components/style/attr.rs @@ -7,20 +7,20 @@ //! [attr]: https://dom.spec.whatwg.org/#interface-attr use app_units::Au; +use crate::properties::PropertyDeclarationBlock; +use crate::shared_lock::Locked; +use crate::str::str_join; +use crate::str::{read_exponent, read_fraction, HTML_SPACE_CHARACTERS}; +use crate::str::{read_numbers, split_commas, split_html_space_chars}; +use crate::values::specified::Length; +use crate::{Atom, LocalName, Namespace, Prefix}; use cssparser::{self, Color, RGBA}; use euclid::num::Zero; use num_traits::ToPrimitive; -use properties::PropertyDeclarationBlock; use selectors::attr::AttrSelectorOperation; use servo_arc::Arc; use servo_url::ServoUrl; -use shared_lock::Locked; use std::str::FromStr; -use str::str_join; -use str::{read_exponent, read_fraction, HTML_SPACE_CHARACTERS}; -use str::{read_numbers, split_commas, split_html_space_chars}; -use values::specified::Length; -use {Atom, LocalName, Namespace, Prefix}; // Duplicated from script::dom::values. const UNSIGNED_LONG_MAX: u32 = 2147483647; |