Skip to main content

script/dom/node/
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::node::*;
6pub(crate) mod children_mutation;
7pub(crate) mod context;
8pub(crate) mod focus;
9pub(crate) mod iterators;
10pub(crate) mod layout_dom;
11#[allow(clippy::module_inception, reason = "The interface name is node")]
12pub(crate) mod node;
13pub(crate) mod nodeiterator;
14pub(crate) mod nodelist;
15pub(crate) mod treewalker;
16pub(crate) mod virtualmethods;
17
18pub(crate) use children_mutation::ChildrenMutation;
19pub(crate) use context::{BindContext, IsShadowTree, MoveContext, UnbindContext};