diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-11-01 23:45:06 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-11-06 15:26:02 +0100 |
commit | 45f7199eee82c66637ec68287eafa40a651001c4 (patch) | |
tree | 8c0802f4ac7b89c2ce4d73063c8f65b9ee5face9 /components/script/textinput.rs | |
parent | 86f148fb97601413c0d983f21b760d973ade7a75 (diff) | |
download | servo-45f7199eee82c66637ec68287eafa40a651001c4.tar.gz servo-45f7199eee82c66637ec68287eafa40a651001c4.zip |
`cargo fix --edition`
Diffstat (limited to 'components/script/textinput.rs')
-rw-r--r-- | components/script/textinput.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/textinput.rs b/components/script/textinput.rs index 7b7a7beb493..87bdd1d6345 100644 --- a/components/script/textinput.rs +++ b/components/script/textinput.rs @@ -4,9 +4,9 @@ //! Common handling of keyboard input and state management for text input controls -use clipboard_provider::ClipboardProvider; -use dom::bindings::str::DOMString; -use dom::keyboardevent::KeyboardEvent; +use crate::clipboard_provider::ClipboardProvider; +use crate::dom::bindings::str::DOMString; +use crate::dom::keyboardevent::KeyboardEvent; use keyboard_types::{Key, KeyState, Modifiers, ShortcutMatcher}; use std::borrow::ToOwned; use std::cmp::{max, min}; |