aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/textinput.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-08-27 09:38:48 -0600
committerbors-servo <metajack+bors@gmail.com>2015-08-27 09:38:48 -0600
commit909429702972d53bf02dfe9a4aa93ea0cb588cf4 (patch)
tree1a64c15ec378b98ae445257c1c7177af65afee6b /components/script/textinput.rs
parent2d704312685249c20fa71d983094fc4e689bc5ff (diff)
parent2a028f66a2e7ab56094cf856ebdc20bc49ab7d4d (diff)
downloadservo-909429702972d53bf02dfe9a4aa93ea0cb588cf4.tar.gz
servo-909429702972d53bf02dfe9a4aa93ea0cb588cf4.zip
Auto merge of #7401 - nox:rm-helpers, r=Manishearth
Remove helper traits Now that `JSRef<T>` is gone, there is no need to have helper traits. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7401) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/textinput.rs')
-rw-r--r--components/script/textinput.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/textinput.rs b/components/script/textinput.rs
index b2c2afdec0f..ebfdadf954b 100644
--- a/components/script/textinput.rs
+++ b/components/script/textinput.rs
@@ -5,7 +5,7 @@
//! Common handling of keyboard input and state management for text input controls
use clipboard_provider::ClipboardProvider;
-use dom::keyboardevent::{KeyboardEvent, KeyboardEventHelpers, key_value};
+use dom::keyboardevent::{KeyboardEvent, key_value};
use msg::constellation_msg::{Key, KeyModifiers};
use msg::constellation_msg::{SHIFT, CONTROL, ALT, SUPER};
use util::mem::HeapSizeOf;