aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmldocument.rs
diff options
context:
space:
mode:
authorKeegan McAllister <kmcallister@mozilla.com>2013-08-09 15:15:18 -0700
committerKeegan McAllister <kmcallister@mozilla.com>2013-08-15 13:55:40 -0700
commit1bdaff0fad9c76e65be969dc9844ab52df318e78 (patch)
tree24cb881133e405c0f867579266cb838133626b0b /src/components/script/dom/htmldocument.rs
parentabaeb582035e05ecbe1134ec542cda463f808f7a (diff)
downloadservo-1bdaff0fad9c76e65be969dc9844ab52df318e78.tar.gz
servo-1bdaff0fad9c76e65be969dc9844ab52df318e78.zip
Reorganize tree ref / node traits
rustc is no longer happy with impl<NR:TreeNodeRef<N>,N:TreeNode<NR>> TreeUtils for NR
Diffstat (limited to 'src/components/script/dom/htmldocument.rs')
-rw-r--r--src/components/script/dom/htmldocument.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/htmldocument.rs b/src/components/script/dom/htmldocument.rs
index 52c15fc36cf..b839f0c4960 100644
--- a/src/components/script/dom/htmldocument.rs
+++ b/src/components/script/dom/htmldocument.rs
@@ -13,7 +13,7 @@ use dom::window::Window;
use js::jsapi::{JSObject, JSContext};
-use servo_util::tree::TreeUtils;
+use servo_util::tree::TreeNodeRef;
use std::libc;
use std::ptr;