aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/html/hubbub_html_parser.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2013-10-16 16:47:04 +0100
committerSimon Sapin <simon.sapin@exyr.org>2013-10-16 18:10:39 +0100
commit62f1f03c161049a4f938a7e1de5dc7fcf78219f6 (patch)
tree8f80653745ac486ba4a60ec274af8ab60bb02901 /src/components/script/html/hubbub_html_parser.rs
parentf38b4ab9bb9c4292f6a2f89c90ca045b5afcdf97 (diff)
downloadservo-62f1f03c161049a4f938a7e1de5dc7fcf78219f6.tar.gz
servo-62f1f03c161049a4f938a7e1de5dc7fcf78219f6.zip
Move Element::get_attr to a trait defined in util::tree
… and add a get_local_name() method to that trait.
Diffstat (limited to 'src/components/script/html/hubbub_html_parser.rs')
-rw-r--r--src/components/script/html/hubbub_html_parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/html/hubbub_html_parser.rs b/src/components/script/html/hubbub_html_parser.rs
index e3b948641e6..b5eb8e4e7f8 100644
--- a/src/components/script/html/hubbub_html_parser.rs
+++ b/src/components/script/html/hubbub_html_parser.rs
@@ -26,7 +26,7 @@ use hubbub::hubbub;
use servo_msg::constellation_msg::{ConstellationChan, SubpageId};
use servo_net::image_cache_task::ImageCacheTask;
use servo_net::resource_task::{Load, Payload, Done, ResourceTask};
-use servo_util::tree::TreeNodeRef;
+use servo_util::tree::{TreeNodeRef, ElementLike};
use servo_util::url::make_url;
use extra::url::Url;
use extra::future::{Future, from_port};