mirror of
https://github.com/servo/servo
synced 2026-04-26 01:25:32 +02:00
Moves MutationObserver interfaces into script/dom/mutationobserver/ module from script/dom/. Testing: Just a refactor shouldn't need any testing. Fixes: Part of https://github.com/servo/servo/issues/38901 Signed-off-by: Emmanuel Paul Elom <elomemmanuel007@gmail.com>
12 lines
409 B
Rust
12 lines
409 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::mutationobserver::*;
|
|
#[allow(
|
|
clippy::module_inception,
|
|
reason = "The interface name is MutationObserver"
|
|
)]
|
|
pub(crate) mod mutationobserver;
|
|
pub(crate) mod mutationrecord;
|