aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/servo/selector_parser.rs
diff options
context:
space:
mode:
authorEmilio Cobos Álvarez <emilio@crisal.io>2018-11-10 21:26:46 +0100
committerEmilio Cobos Álvarez <emilio@crisal.io>2018-11-10 21:42:24 +0100
commitbd9c53c5da1ae1c24d4f01f00ff61070ba8bc10f (patch)
treebe493b96aa515283f65a80135b56004c00fd379c /components/style/servo/selector_parser.rs
parent212b3e131142023bcc35f3b40253f3431f742803 (diff)
downloadservo-bd9c53c5da1ae1c24d4f01f00ff61070ba8bc10f.tar.gz
servo-bd9c53c5da1ae1c24d4f01f00ff61070ba8bc10f.zip
style: Manually extinguish multi-line use statements.
Diffstat (limited to 'components/style/servo/selector_parser.rs')
-rw-r--r--components/style/servo/selector_parser.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/components/style/servo/selector_parser.rs b/components/style/servo/selector_parser.rs
index a959a820edc..b71d81c2978 100644
--- a/components/style/servo/selector_parser.rs
+++ b/components/style/servo/selector_parser.rs
@@ -13,9 +13,8 @@ use crate::invalidation::element::document_state::InvalidationMatchingData;
use crate::invalidation::element::element_wrapper::ElementSnapshot;
use crate::properties::longhands::display::computed_value::T as Display;
use crate::properties::{ComputedValues, PropertyFlags};
-use crate::selector_parser::{
- AttrValue as SelectorAttrValue, PseudoElementCascadeType, SelectorParser,
-};
+use crate::selector_parser::AttrValue as SelectorAttrValue;
+use crate::selector_parser::{PseudoElementCascadeType, SelectorParser};
use crate::{Atom, CaseSensitivityExt, LocalName, Namespace, Prefix};
use cssparser::{serialize_identifier, CowRcStr, Parser as CssParser, SourceLocation, ToCss};
use fxhash::FxHashMap;