layout: Limit visibility of some types and removed unused enum variants / data (#38428)

Testing: This change mainly removes dead code, so no tests necessary.

Signed-off-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
Martin Robinson 2025-08-02 18:52:00 +02:00 committed by GitHub
parent e78d8818a0
commit a7b232ef4c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 16 additions and 24 deletions

View file

@ -8,9 +8,9 @@
//! painted.
mod cell;
pub mod context;
pub mod display_list;
pub mod dom;
mod context;
mod display_list;
mod dom;
mod dom_traversal;
mod flexbox;
pub mod flow;
@ -24,18 +24,18 @@ mod taffy;
mod construct_modern;
mod lists;
mod positioned;
pub mod query;
mod query;
mod quotes;
mod replaced;
mod sizing;
mod style_ext;
pub mod table;
pub mod traversal;
mod traversal;
use app_units::Au;
pub use cell::ArcRefCell;
pub use flow::BoxTree;
pub use fragment_tree::FragmentTree;
pub(crate) use flow::BoxTree;
pub(crate) use fragment_tree::FragmentTree;
pub use layout_impl::LayoutFactoryImpl;
use malloc_size_of_derive::MallocSizeOf;
use servo_arc::Arc as ServoArc;