diff options
author | Piotr Stankiewicz <bionicrift@gmail.com> | 2016-05-15 23:47:15 +0100 |
---|---|---|
committer | Piotr Stankiewicz <bionicrift@gmail.com> | 2016-05-20 18:25:13 +0100 |
commit | d1af39c114d9b1b101826d541afb09105971084b (patch) | |
tree | 75923725099e5a443e76c6a740b7df01ea7a30d3 /components/script/dom/mod.rs | |
parent | 4590fe230f6a498a05109679e3a4064cfafef9e6 (diff) | |
download | servo-d1af39c114d9b1b101826d541afb09105971084b.tar.gz servo-d1af39c114d9b1b101826d541afb09105971084b.zip |
dom: Add missing event handlers
Adding:
* global event handlers,
* window event handlers,
* document and element handlers,
* and support for BeforeUnloadEvent.
Signed-off-by: Piotr Stankiewicz <bionicrift@gmail.com>
Diffstat (limited to 'components/script/dom/mod.rs')
-rw-r--r-- | components/script/dom/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs index cfa41a1ae19..8d13c104aa1 100644 --- a/components/script/dom/mod.rs +++ b/components/script/dom/mod.rs @@ -211,6 +211,7 @@ pub mod types { pub mod activation; pub mod attr; +pub mod beforeunloadevent; mod create; #[allow(unsafe_code)] #[deny(missing_docs, non_snake_case)] |