mirror of
https://github.com/servo/servo
synced 2026-05-09 00:22:16 +02:00
This continues the work to split up the large DOM structs. In this case we create a helper struct to store focus-related state much like `DocumentEventHandler`. Testing: This is mostly code motion, so should be covered by existing tests. Fixes: #43720 Signed-off-by: Martin Robinson <mrobinson@igalia.com>
15 lines
548 B
Rust
15 lines
548 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
#[allow(clippy::module_inception, reason = "The interface name is Document")]
|
|
pub(crate) mod document;
|
|
pub(crate) mod document_embedder_controls;
|
|
pub(crate) mod document_event_handler;
|
|
pub(crate) mod documentfragment;
|
|
pub(crate) mod documentorshadowroot;
|
|
pub(crate) mod documenttype;
|
|
pub(crate) mod focus;
|
|
|
|
pub(crate) use self::document::*;
|