Skip to main content

script/dom/event/
mod.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5pub(crate) use self::event::*;
6pub(crate) mod animationevent;
7pub(crate) mod beforeunloadevent;
8pub(crate) mod closeevent;
9pub(crate) mod commandevent;
10pub(crate) mod compositionevent;
11pub(crate) mod customevent;
12pub(crate) mod errorevent;
13#[allow(clippy::module_inception, reason = "The interface name is Event")]
14pub(crate) mod event;
15pub(crate) mod eventtarget;
16pub(crate) mod focusevent;
17pub(crate) mod formdataevent;
18pub(crate) mod hashchangeevent;
19pub(crate) mod inputevent;
20pub(crate) mod keyboardevent;
21pub(crate) mod messageevent;
22pub(crate) mod mouseevent;
23pub(crate) mod pagetransitionevent;
24#[expect(dead_code)]
25pub(crate) mod pointerevent;
26pub(crate) mod popstateevent;
27pub(crate) mod progressevent;
28pub(crate) mod promiserejectionevent;
29pub(crate) mod storageevent;
30pub(crate) mod submitevent;
31pub(crate) mod toggleevent;
32pub(crate) mod touchevent;
33pub(crate) mod transitionevent;
34pub(crate) mod uievent;
35pub(crate) mod wheelevent;