mirror of
https://github.com/servo/servo
synced 2026-04-27 18:07:52 +02:00
Move testbinding interfaces to it's own module, to avoid cluttering dom folder. Testing: A successful build is enough Part of #38901 --------- Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com>
17 lines
652 B
Rust
17 lines
652 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) mod testbinding;
|
|
pub(crate) mod testbindingiterable;
|
|
pub(crate) mod testbindingmaplikewithinterface;
|
|
pub(crate) mod testbindingmaplikewithprimitive;
|
|
pub(crate) mod testbindingpairiterable;
|
|
pub(crate) mod testbindingproxy;
|
|
pub(crate) mod testbindingsetlikewithinterface;
|
|
pub(crate) mod testbindingsetlikewithprimitive;
|
|
pub(crate) mod testns;
|
|
pub(crate) mod testutils;
|
|
pub(crate) mod testworklet;
|
|
pub(crate) mod testworkletglobalscope;
|