Closed
Bug 1878109
Opened 1 year ago
Closed 26 days ago
Failing WPT css/css-flexbox/align-content-wrap-003.html
Categories
(Core :: Layout: Flexbox, defect)
Core
Layout: Flexbox
Tracking
()
RESOLVED
FIXED
136 Branch
Tracking | Status | |
---|---|---|
firefox136 | --- | fixed |
People
(Reporter: twisniewski, Assigned: TYLin)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
Updated•1 year ago
|
Severity: -- → S3
Component: Layout → Layout: Flexbox
Assignee | ||
Comment 1•27 days ago
|
||
Similar to Bug 1836206, in flex container, we should also use safe
in the fallback for these align-content
values: space-between
, space-around
, and space-evenly
.
The code is at https://searchfox.org/mozilla-central/rev/3076c9156ef84aae253ffdc1d391e0bfab2c406b/layout/generic/nsFlexContainerFrame.cpp#3670-3693
Assignee | ||
Comment 2•27 days ago
|
||
Similar to Bug 1836206 and per the CSS Align spec, 'space-between',
'space-around', and 'space-evenly' should use a "safe" fallback alignment when
overflow occurs.
This patch sets alignContentFlags
to StyleAlignFlags::SAFE
to fix the
fallback, and moves overflow-handling code to a later point so that it can catch
overflow more broadly.
Updated•27 days ago
|
Assignee: nobody → aethanyc
Status: NEW → ASSIGNED
Pushed by aethanyc@gmail.com:
https://hg.mozilla.org/integration/autoland/rev/6972ade9ee51
Fix align-content's distributed alignment fallback for flex. r=dholbert
Comment 4•26 days ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 26 days ago
status-firefox136:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 136 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•