From f151cdf6eede508eb0b4fc972413e0a4b442f5b5 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Tue, 5 Nov 2024 10:50:22 +0100 Subject: [PATCH] layout: Remove an obselete comment from flexbox (#34148) This behavior is handled properly in `style_ext.rs`. Signed-off-by: Martin Robinson --- components/layout_2020/flexbox/layout.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/components/layout_2020/flexbox/layout.rs b/components/layout_2020/flexbox/layout.rs index 698167a213a..edd66bbf649 100644 --- a/components/layout_2020/flexbox/layout.rs +++ b/components/layout_2020/flexbox/layout.rs @@ -39,11 +39,6 @@ use crate::style_ext::{ }; use crate::{ContainingBlock, IndefiniteContainingBlock}; -// FIMXE: “Flex items […] `z-index` values other than `auto` create a stacking context -// even if `position` is `static` (behaving exactly as if `position` were `relative`).” -// https://drafts.csswg.org/css-flexbox/#painting -// (likely in `display_list/stacking_context.rs`) - /// Layout parameters and intermediate results about a flex container, /// grouped to avoid passing around many parameters struct FlexContext<'a> {