aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/parse
diff options
context:
space:
mode:
authorRavi Shankar <wafflespeanut@gmail.com>2015-09-24 02:12:45 +0530
committerRavi Shankar <wafflespeanut@gmail.com>2015-09-24 02:12:45 +0530
commit889eec364b6e3df22d36581008289e6fbfb8b39f (patch)
tree056e9dbc10fb3879b4a281296fe99e88490aacc3 /components/script/parse
parent705ad72aee58b4fc636bca3a2784c7643048336d (diff)
downloadservo-889eec364b6e3df22d36581008289e6fbfb8b39f.tar.gz
servo-889eec364b6e3df22d36581008289e6fbfb8b39f.zip
sorted the extern crate, mod & use declarations
Diffstat (limited to 'components/script/parse')
-rw-r--r--components/script/parse/html.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/parse/html.rs b/components/script/parse/html.rs
index 6bdd6d5bde0..3972fba7a3d 100644
--- a/components/script/parse/html.rs
+++ b/components/script/parse/html.rs
@@ -24,12 +24,12 @@ use dom::htmlscriptelement::HTMLScriptElement;
use dom::node::{Node, NodeTypeId};
use dom::node::{document_from_node, window_from_node};
use dom::servohtmlparser;
-use dom::servohtmlparser::{ServoHTMLParser, FragmentContext};
+use dom::servohtmlparser::{FragmentContext, ServoHTMLParser};
use encoding::types::Encoding;
use html5ever::Attribute;
use html5ever::serialize::TraversalScope;
-use html5ever::serialize::TraversalScope::{IncludeNode, ChildrenOnly};
-use html5ever::serialize::{Serializable, Serializer, AttrRef};
+use html5ever::serialize::TraversalScope::{ChildrenOnly, IncludeNode};
+use html5ever::serialize::{AttrRef, Serializable, Serializer};
use html5ever::tree_builder::{NextParserState, NodeOrText, QuirksMode, TreeSink};
use msg::constellation_msg::PipelineId;
use parse::Parser;