Re: [csswg-drafts] [css-flexbox] Change content-size suggestion to min-intrinsic instead of min-content? (#6794)

The underlying behavior difference may explain why firefox and chrome have different renderings for the example below.

```HTML
<div style="display: flex; flex-direction: column; height: 0px;">
  <div style="aspect-ratio: 1/1; width: 100px; border: 5px solid orange;">
    <div style="height: 200%; background: blue;"></div>
  </div>
</div>
```
Chrome 99 canary gives 0 height to both orange item and blue child.
Firefox 95a1 gives 200px height to orange item and 400px height to blue child.


-- 
GitHub Notification of comment by davidsgrogan
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6794#issuecomment-1005344637 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 5 January 2022 03:10:31 UTC