diff options
Diffstat (limited to 'src/components/script/dom/text.rs')
-rw-r--r-- | src/components/script/dom/text.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/script/dom/text.rs b/src/components/script/dom/text.rs index 7ea96245124..857367bfb3d 100644 --- a/src/components/script/dom/text.rs +++ b/src/components/script/dom/text.rs @@ -3,11 +3,12 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use dom::bindings::codegen::TextBinding; -use dom::bindings::utils::{DOMString, Fallible}; +use dom::bindings::utils::Fallible; use dom::characterdata::CharacterData; use dom::document::AbstractDocument; use dom::node::{AbstractNode, Node, TextNodeTypeId}; use dom::window::Window; +use servo_util::str::DOMString; /// An HTML text node. pub struct Text { |