- From: Emilio Cobos Álvarez via GitHub <sysbot+gh@w3.org>
- Date: Wed, 26 Feb 2020 13:33:43 +0000
- To: public-css-archive@w3.org
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