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/htmlinputelement.rs | |
parent | 744b94346aa586d54af7ff13bd2bf94faef41e84 (diff) | |
download | servo-8ecb5962f3c2d2ec1cc031ef1e893ab81142c730.tar.gz servo-8ecb5962f3c2d2ec1cc031ef1e893ab81142c730.zip |
Move util::str to style
Diffstat (limited to 'components/script/dom/htmlinputelement.rs')
-rw-r--r-- | components/script/dom/htmlinputelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlinputelement.rs b/components/script/dom/htmlinputelement.rs index 762c10aa76d..0ee2023e44a 100644 --- a/components/script/dom/htmlinputelement.rs +++ b/components/script/dom/htmlinputelement.rs @@ -42,10 +42,10 @@ use std::ops::Range; use string_cache::Atom; use style::attr::AttrValue; use style::element_state::*; +use style::str::split_commas; use textinput::KeyReaction::{DispatchInput, Nothing, RedrawSelection, TriggerDefaultAction}; use textinput::Lines::Single; use textinput::{TextInput, SelectionDirection}; -use util::str::split_commas; const DEFAULT_SUBMIT_VALUE: &'static str = "Submit"; const DEFAULT_RESET_VALUE: &'static str = "Reset"; |