aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/block.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/layout/block.rs')
-rw-r--r--components/layout/block.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/components/layout/block.rs b/components/layout/block.rs
index afc1f9e7180..e8eb66cb9ac 100644
--- a/components/layout/block.rs
+++ b/components/layout/block.rs
@@ -1485,11 +1485,13 @@ impl BlockFlow {
// * Flex items cannot also be floats.
// Therefore, a flex item cannot be impacted by a float.
// See also: https://www.w3.org/TR/css-flexbox-1/#flex-containers
- // This line is not just an optimization. It's also needed for correctness.
if !self.base.might_have_floats_in() {
return
}
+ // If you remove the might_have_floats_in conditional, this will go off.
+ debug_assert!(!self.is_flex());
+
// Compute the available space for us, based on the actual floats.
let rect = self.base.floats.available_rect(
self.base.position.start.b,