Re: [csswg-drafts] [css-values-4] Specify simplification of min() and max() more explicitly (#4550)

I think not doing this would be somewhat inconsistent with how all implementations work for cases like `color: rgba(0, 0, 0, min(10%, 50%))` or such.

`background-size` is a bit weirder and seems to be all over the place:

```
document.body.style.backgroundSize = "min(10%, 100%)"
document.body.style.backgroundSize //  firefox: calc(10%), chrome: min(10%, 100%), webkit: calc(min(10%, 100%))
getComputedStyle(document.body).backgroundSize // firefox / chrome: 10%, webkit: calc(min(10%, 100%))
```

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

Received on Wednesday, 26 February 2020 13:33:45 UTC