diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-07-05 10:34:43 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-07-05 10:43:54 +0200 |
commit | 8ecb5962f3c2d2ec1cc031ef1e893ab81142c730 (patch) | |
tree | 57344a64ccc5e1f966bb774cea5603623b8dc9f5 /components/script/dom/htmlformelement.rs | |
parent | 744b94346aa586d54af7ff13bd2bf94faef41e84 (diff) | |
download | servo-8ecb5962f3c2d2ec1cc031ef1e893ab81142c730.tar.gz servo-8ecb5962f3c2d2ec1cc031ef1e893ab81142c730.zip |
Move util::str to style
Diffstat (limited to 'components/script/dom/htmlformelement.rs')
-rw-r--r-- | components/script/dom/htmlformelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlformelement.rs b/components/script/dom/htmlformelement.rs index 515d49c0f7c..27e954c9abc 100644 --- a/components/script/dom/htmlformelement.rs +++ b/components/script/dom/htmlformelement.rs @@ -51,10 +51,10 @@ use std::cell::Cell; use std::sync::mpsc::Sender; use string_cache::Atom; use style::attr::AttrValue; +use style::str::split_html_space_chars; use task_source::TaskSource; use task_source::dom_manipulation::DOMManipulationTask; use url::form_urlencoded; -use util::str::split_html_space_chars; #[derive(JSTraceable, PartialEq, Clone, Copy, HeapSizeOf)] pub struct GenerationId(u32); |