aboutsummaryrefslogtreecommitdiffstats
path: root/src/servo/html/cssparse.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2013-05-09 14:06:03 -0700
committerPatrick Walton <pcwalton@mimiga.net>2013-05-09 14:06:03 -0700
commit932070b9e7df841ee9206d065a3ecd2de123a627 (patch)
tree5d6d5842b21aa0ebe6c8037af99a37e21cb6807a /src/servo/html/cssparse.rs
parent7267f806a7817e48b0ac0c9c4aa23a8a0d288b03 (diff)
downloadservo-932070b9e7df841ee9206d065a3ecd2de123a627.tar.gz
servo-932070b9e7df841ee9206d065a3ecd2de123a627.zip
Split the network stuff out of servo-gfx into servo-net
Diffstat (limited to 'src/servo/html/cssparse.rs')
-rw-r--r--src/servo/html/cssparse.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/servo/html/cssparse.rs b/src/servo/html/cssparse.rs
index 8149fc671d3..9ee789d6e3e 100644
--- a/src/servo/html/cssparse.rs
+++ b/src/servo/html/cssparse.rs
@@ -2,17 +2,14 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-/*!
-Some little helpers for hooking up the HTML parser with the CSS parser
-*/
-
-use resource::resource_task::{ResourceTask, ProgressMsg, Load, Payload, Done};
+/// Some little helpers for hooking up the HTML parser with the CSS parser.
use core::cell::Cell;
use core::comm::Port;
use core::str;
use newcss::stylesheet::Stylesheet;
use newcss::util::DataStream;
+use servo_net::resource_task::{ResourceTask, ProgressMsg, Load, Payload, Done};
use std::net::url::Url;
/// Where a style sheet comes from.