Files
servo/components/script/dom/node/mod.rs
Jayanta Pradhan c698be8306 script: move node interfaces into node/. (#43662)
Moves node interfaces into script/dom/node/ module from script/dom/.

Testing: Just a refactor shouldn't need any testing.
Fixes: Part of #38901

Signed-off-by: Jayanta Pradhan <pradhanjayanta91@gmail.com>
2026-03-25 17:39:28 +00:00

10 lines
386 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/. */
pub(crate) use self::node::*;
#[allow(clippy::module_inception, reason = "The interface name is node")]
pub(crate) mod node;
pub(crate) mod nodeiterator;
pub(crate) mod nodelist;