diff options
author | Ms2ger <ms2ger@gmail.com> | 2014-02-14 12:48:51 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2014-02-14 12:48:51 +0100 |
commit | 59184bf6e1af4e0e8aef57ff3f7b8724f5762cee (patch) | |
tree | cf0a74158ce97e752c68d5cdf673ebe131a659c0 /src/components/script/html/hubbub_html_parser.rs | |
parent | f1de0b738134f153a398866f76d1b5d0213d3c02 (diff) | |
download | servo-59184bf6e1af4e0e8aef57ff3f7b8724f5762cee.tar.gz servo-59184bf6e1af4e0e8aef57ff3f7b8724f5762cee.zip |
Move DOMString into servo_util.
Diffstat (limited to 'src/components/script/html/hubbub_html_parser.rs')
-rw-r--r-- | src/components/script/html/hubbub_html_parser.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/script/html/hubbub_html_parser.rs b/src/components/script/html/hubbub_html_parser.rs index 9c1453b43f7..fdce3cb19a2 100644 --- a/src/components/script/html/hubbub_html_parser.rs +++ b/src/components/script/html/hubbub_html_parser.rs @@ -2,7 +2,6 @@ * 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/. */ -use dom::bindings::utils::DOMString; use dom::document::AbstractDocument; use dom::element::{HTMLLinkElementTypeId, HTMLIframeElementTypeId, HTMLImageElementTypeId}; use dom::htmlelement::HTMLElement; @@ -20,9 +19,10 @@ use js::jsapi::JSContext; use servo_msg::constellation_msg::SubpageId; use servo_net::image_cache_task::ImageCacheTask; use servo_net::resource_task::{Load, Payload, Done, ResourceTask, load_whole_resource}; -use servo_util::url::parse_url; -use servo_util::task::spawn_named; use servo_util::namespace::Null; +use servo_util::str::DOMString; +use servo_util::task::spawn_named; +use servo_util::url::parse_url; use std::cast; use std::cell::RefCell; use std::comm::{Port, SharedChan}; |