From c090d777c6d07fde5680f0c670ae69f824b1a0fe Mon Sep 17 00:00:00 2001 From: Daniel Holbert Date: Fri, 30 Mar 2018 16:13:08 -0700 Subject: [PATCH] Bug 1174003 late-breaking followup: remove obsolete comment about flex align-self:baseline behavior. (no review, comment-only, DONTBUILD) There's been a clarification to the spec text that this comment was worried about: https://github.com/w3c/csswg-drafts/issues/2316 And with that clarification, this comment is no longer applicable. --- layout/generic/nsFlexContainerFrame.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/layout/generic/nsFlexContainerFrame.cpp b/layout/generic/nsFlexContainerFrame.cpp index 43630c21ecde..2398fbcefdbc 100644 --- a/layout/generic/nsFlexContainerFrame.cpp +++ b/layout/generic/nsFlexContainerFrame.cpp @@ -1875,8 +1875,6 @@ FlexItem::FlexItem(ReflowInput& aFlexItemReflowInput, // with special cases elsewhere. // We are treating this case as one where it is appropriate to use the // fallback values defined at https://www.w3.org/TR/css-align/#baseline-values - // XXXdholbert That spec text actually says to fall back to 'start'/'end', - // not 'flex-start'/'flex-end'... Probably sort this out in bug 1207698. if (!IsBlockAxisCrossAxis()) { if (mAlignSelf == NS_STYLE_ALIGN_BASELINE) { mAlignSelf = NS_STYLE_ALIGN_FLEX_START;