mirror of
https://github.com/servo/servo.git
synced 2025-09-27 23:30:08 +01:00
layout: Move sizing logic from geom.rs to sizing.rs (#38568)
Moves `Size`, `SizeConstraint`, `Sizes` and `LazySizeData`. Testing: Not needed, no change in behavior. Signed-off-by: Oriol Brufau <obrufau@igalia.com>
This commit is contained in:
parent
d5d3ad6949
commit
7ff8724eaf
12 changed files with 559 additions and 557 deletions
|
@ -16,13 +16,14 @@ use crate::dom_traversal::{Contents, NodeAndStyleInfo};
|
|||
use crate::flexbox::FlexContainer;
|
||||
use crate::flow::BlockFormattingContext;
|
||||
use crate::fragment_tree::{BaseFragmentInfo, FragmentFlags};
|
||||
use crate::geom::LazySize;
|
||||
use crate::layout_box_base::{
|
||||
CacheableLayoutResult, CacheableLayoutResultAndInputs, LayoutBoxBase,
|
||||
};
|
||||
use crate::positioned::PositioningContext;
|
||||
use crate::replaced::ReplacedContents;
|
||||
use crate::sizing::{self, ComputeInlineContentSizes, ContentSizes, InlineContentSizesResult};
|
||||
use crate::sizing::{
|
||||
self, ComputeInlineContentSizes, ContentSizes, InlineContentSizesResult, LazySize,
|
||||
};
|
||||
use crate::style_ext::{AspectRatio, DisplayInside, LayoutStyle};
|
||||
use crate::table::Table;
|
||||
use crate::taffy::TaffyContainer;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue