aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmldocument.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2014-01-25 08:22:51 -0800
committerSimon Sapin <simon.sapin@exyr.org>2014-01-25 12:14:06 -0800
commit624e2714d44d6d064aa507f8f6c806888a0f8ddc (patch)
tree23690076464d8062bb2d23695dd966fda3214c21 /src/components/script/dom/htmldocument.rs
parentae0cbda327b16e4f38b10e1913b04c3eaad0224e (diff)
downloadservo-624e2714d44d6d064aa507f8f6c806888a0f8ddc.tar.gz
servo-624e2714d44d6d064aa507f8f6c806888a0f8ddc.zip
Move script::dom::namespace into util, in order to use it from style later.
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 144869392fe..0dad2905d89 100644
--- a/src/components/script/dom/htmldocument.rs
+++ b/src/components/script/dom/htmldocument.rs
@@ -6,8 +6,8 @@ use dom::bindings::codegen::HTMLDocumentBinding;
use dom::bindings::utils::{Reflectable, Reflector, Traceable};
use dom::document::{AbstractDocument, Document, HTML};
use dom::htmlcollection::HTMLCollection;
-use dom::namespace::Null;
use dom::window::Window;
+use servo_util::namespace::Null;
use js::jsapi::JSTracer;
use std::str::eq_slice;