diff options
author | bors-servo <release+servo@mozilla.com> | 2014-02-14 07:25:58 -0500 |
---|---|---|
committer | bors-servo <release+servo@mozilla.com> | 2014-02-14 07:25:58 -0500 |
commit | 6b89cbf3c508a9a19469e9b95d72026fc837661c (patch) | |
tree | 346c05aa8cd086cc0a72f1b16ececce02c17a262 /src/components/script/html/hubbub_html_parser.rs | |
parent | f1de0b738134f153a398866f76d1b5d0213d3c02 (diff) | |
parent | 951d35902c8d160441478126a32a0723c11278f1 (diff) | |
download | servo-6b89cbf3c508a9a19469e9b95d72026fc837661c.tar.gz servo-6b89cbf3c508a9a19469e9b95d72026fc837661c.zip |
auto merge of #1694 : Ms2ger/servo/move-DOMString, r=SimonSapin
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}; |