aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout_2020/lib.rs
diff options
context:
space:
mode:
authorAnthony Ramine <nox@nox.paris>2019-11-26 16:21:11 +0100
committerSimon Sapin <simon.sapin@exyr.org>2019-11-26 16:36:24 +0100
commit858bc5aca681fae70ce640d70d5fa80f7edd3dc9 (patch)
tree1ddb1cbd9486e443dc02bddb6d24a44da5d7a629 /components/layout_2020/lib.rs
parent24b7eadfff33fd822dadbb9b76692fcfca7810d2 (diff)
downloadservo-858bc5aca681fae70ce640d70d5fa80f7edd3dc9.tar.gz
servo-858bc5aca681fae70ce640d70d5fa80f7edd3dc9.zip
Split FlowChildren in IndependentLayout and FlowLayout
The result of doing the layout of an independent formatting context should be unconcerned with margin collapsing.
Diffstat (limited to 'components/layout_2020/lib.rs')
-rw-r--r--components/layout_2020/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout_2020/lib.rs b/components/layout_2020/lib.rs
index f1b3c308be2..07956417087 100644
--- a/components/layout_2020/lib.rs
+++ b/components/layout_2020/lib.rs
@@ -33,7 +33,7 @@ pub use flow::{BoxTreeRoot, FragmentTreeRoot};
use crate::context::LayoutContext;
use crate::dom_traversal::{Contents, NodeExt};
-use crate::flow::{BlockFormattingContext, FlowChildren};
+use crate::flow::BlockFormattingContext;
use crate::geom::flow_relative::Vec2;
use crate::positioned::AbsolutelyPositionedFragment;
use crate::replaced::ReplacedContent;