Files
servo/components/script/dom/resizeobserver/mod.rs
elomscansio 14faaaf093 script: Move resizeobserver DOM interfaces to script/dom/resizeobserver/ (#43647)
Moves interfaces defined by the resizeobserver spec to the
script/dom/resizeobserver/ module from script/dom/.

Testing: Just a refactor shouldn't need any testing
Fixes: Partially https://github.com/servo/servo/issues/38901

Signed-off-by: Emmanuel Paul Elom <elomemmanuel007@gmail.com>
2026-03-25 10:56:57 +00:00

13 lines
443 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::resizeobserver::*;
#[allow(
clippy::module_inception,
reason = "The interface name is ResizeObserver"
)]
pub(crate) mod resizeobserver;
pub(crate) mod resizeobserverentry;
pub(crate) mod resizeobserversize;