diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2014-01-25 08:22:51 -0800 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2014-01-25 12:14:06 -0800 |
commit | 624e2714d44d6d064aa507f8f6c806888a0f8ddc (patch) | |
tree | 23690076464d8062bb2d23695dd966fda3214c21 /src/components/script/dom/htmlserializer.rs | |
parent | ae0cbda327b16e4f38b10e1913b04c3eaad0224e (diff) | |
download | servo-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/htmlserializer.rs')
-rw-r--r-- | src/components/script/dom/htmlserializer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/htmlserializer.rs b/src/components/script/dom/htmlserializer.rs index 3de36d831f2..8dbedcb2679 100644 --- a/src/components/script/dom/htmlserializer.rs +++ b/src/components/script/dom/htmlserializer.rs @@ -2,7 +2,7 @@ * 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::namespace; +use servo_util::namespace; use dom::attr::Attr; use dom::node::NodeIterator; use dom::node::{DoctypeNodeTypeId, DocumentFragmentNodeTypeId, CommentNodeTypeId, DocumentNodeTypeId, ElementNodeTypeId, TextNodeTypeId, AbstractNode}; |