[csswg-drafts] Serialization of grid-template-rows/columns (#4173)

ewilligers has just created a new issue for https://github.com/w3c/csswg-drafts:

== Serialization of grid-template-rows/columns ==
If we set `grid-template-rows` to `"repeat(1, [] 10px)"`, and then read the specified value, what should the result be? (All browsers give `"10px"` as the computed value.)

* `"repeat(1, [] 10px)"` - Blink
* `"repeat(1, 10px)"` - Firefox
* `"[] 10px"` - Safari
* `"10px"` Edge 18

Edge 18 only "expands" `repeat(1, ...)`, while Safari expands any `repeat(n, ...)` in the specified value. (Blink, Firefox and Safari expand `repeat(n, ...)` in computed values.)




Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/4173 using your GitHub account

Received on Monday, 5 August 2019 12:12:38 UTC