diff options
author | Ms2ger <ms2ger@gmail.com> | 2014-02-14 12:48:51 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2014-02-14 12:48:51 +0100 |
commit | 59184bf6e1af4e0e8aef57ff3f7b8724f5762cee (patch) | |
tree | cf0a74158ce97e752c68d5cdf673ebe131a659c0 /src/components/script/dom/node.rs | |
parent | f1de0b738134f153a398866f76d1b5d0213d3c02 (diff) | |
download | servo-59184bf6e1af4e0e8aef57ff3f7b8724f5762cee.tar.gz servo-59184bf6e1af4e0e8aef57ff3f7b8724f5762cee.zip |
Move DOMString into servo_util.
Diffstat (limited to 'src/components/script/dom/node.rs')
-rw-r--r-- | src/components/script/dom/node.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/node.rs b/src/components/script/dom/node.rs index c295b5e28cd..fc57050a3b5 100644 --- a/src/components/script/dom/node.rs +++ b/src/components/script/dom/node.rs @@ -5,7 +5,6 @@ //! The core DOM types. Defines the basic DOM hierarchy as well as all the HTML elements. use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object}; -use dom::bindings::utils::{DOMString, null_str_as_empty}; use dom::bindings::utils::{ErrorResult, Fallible, NotFound, HierarchyRequest}; use dom::bindings::utils; use dom::characterdata::CharacterData; @@ -20,6 +19,7 @@ use dom::nodelist::{NodeList}; use dom::text::Text; use dom::processinginstruction::ProcessingInstruction; use layout_interface::{LayoutChan, ReapLayoutDataMsg, UntrustedNodeAddress}; +use servo_util::str::{DOMString, null_str_as_empty}; use js::jsapi::{JSContext, JSObject, JSRuntime}; use js::jsfriendapi; |