[Webkit-unassigned] [Bug 255419] Rendering issue with checkbox in flexbox layout

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Apr 15 08:34:24 PDT 2023


https://bugs.webkit.org/show_bug.cgi?id=255419

--- Comment #8 from zalan <zalan at apple.com> ---
This is equivalent to the following case where the first flex item has non-zero fixed width but collapsed to 0px due to insufficient horizontal space.

<style>
.flex_box {
  display: flex;
  max-width: 30px;
}
</style>
<div class=flex_box>
  <div style="width: 12px; height: 12px;"></div>
  <div>foobar</div>
</div>

We need to teach preferred with computation to account for such intrinsic content.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20230415/3efbb946/attachment.htm>


More information about the webkit-unassigned mailing list