aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/mod.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2017-07-06 10:55:41 -0700
committerGitHub <noreply@github.com>2017-07-06 10:55:41 -0700
commitf18782fb0e10e150f44719d9899a62b84ecb7adc (patch)
treef4a9add947aa9c923b49055c2a0291cd8978fecc /components/script/dom/mod.rs
parent901525c9116ee0945781811c97fd3395db7c5cf9 (diff)
parent11026600151af2ad51486a7d9ee56b8f1d7391ce (diff)
downloadservo-f18782fb0e10e150f44719d9899a62b84ecb7adc.tar.gz
servo-f18782fb0e10e150f44719d9899a62b84ecb7adc.zip
Auto merge of #17578 - pyfisch:input-event, r=jdm
Implement the InputEvent Add WebIDL, from UI Events working draft. Implement script type for event. Note that actually firing InputEvents is not part of this commit. <!-- Please describe your changes on the following line: --> As part of my effort to improve [keyboard handling](https://groups.google.com/forum/#!topic/mozilla.dev.servo/e6R7eBDjo4M) it is necessary to introduce the InputEvent. While I have a working prototype using the input event this still needs a lot of work before it can be merged into servo. cc @jdm <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/17578) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/mod.rs')
-rw-r--r--components/script/dom/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs
index 6f800625148..1a2a3fc7171 100644
--- a/components/script/dom/mod.rs
+++ b/components/script/dom/mod.rs
@@ -372,6 +372,7 @@ pub mod htmlulistelement;
pub mod htmlunknownelement;
pub mod htmlvideoelement;
pub mod imagedata;
+pub mod inputevent;
pub mod keyboardevent;
pub mod location;
pub mod mediaerror;