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

As a data-point, we a starting to receive some bug reports about out behaviour (specifically for this case: https://www.software.hixie.ch/utilities/js/live-dom-viewer/?saved=12476 [1] )

With people expecting WebKit's behaviour.

[1]
```
<!DOCTYPE html>
Both these should render the same
<div style="width: 100px; height: 100px; display: inline-flex; flex-direction: column">
 <div style="aspect-ratio: 1; background-color: red;"></div>
 <div style="min-height: 100px; background-color: blue;"></div>
</div>
<div style="width: 100px; height: 100px; display: inline-flex; flex-direction: column">
 <div style="width: 100%; aspect-ratio: 1; background-color: red;"></div>
 <div style="min-height: 100px; background-color: blue;"></div>
</div>
```

(in the row direction https://www.software.hixie.ch/utilities/js/live-dom-viewer/?saved=12477 which only Blink is consistent).

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


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

Received on Wednesday, 20 March 2024 18:26:50 UTC