mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
This is a simple code organization change with no behavior change with the idea of making Layout 2020 easier to understand by new folks to the project. The idea is that we will have a cleaner separation between the different parts of layout ie one directory for the fragment tree and one (currently multiple) directory for the box tree.
17 lines
527 B
Rust
17 lines
527 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/. */
|
|
|
|
mod base_fragment;
|
|
mod box_fragment;
|
|
mod containing_block;
|
|
mod fragment;
|
|
mod fragment_tree;
|
|
mod hoisted_shared_fragment;
|
|
|
|
pub(crate) use base_fragment::*;
|
|
pub(crate) use box_fragment::*;
|
|
pub(crate) use containing_block::*;
|
|
pub(crate) use fragment::*;
|
|
pub use fragment_tree::*;
|
|
pub(crate) use hoisted_shared_fragment::*;
|