mirror of
https://github.com/servo/servo.git
synced 2025-08-09 07:25:35 +01:00
Flex items in the box tree
This commit is contained in:
parent
64124f7a5e
commit
ec548e849c
3 changed files with 121 additions and 25 deletions
|
@ -3,6 +3,7 @@
|
|||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||||
|
||||
use crate::cell::ArcRefCell;
|
||||
use crate::flexbox::FlexLevelBox;
|
||||
use crate::flow::inline::InlineLevelBox;
|
||||
use crate::flow::BlockLevelBox;
|
||||
|
||||
|
@ -17,4 +18,5 @@ pub(super) enum LayoutBox {
|
|||
DisplayContents,
|
||||
BlockLevel(ArcRefCell<BlockLevelBox>),
|
||||
InlineLevel(ArcRefCell<InlineLevelBox>),
|
||||
FlexLevel(ArcRefCell<FlexLevelBox>),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue