You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code returns repeat(auto-fill, 300px) instead of 300px 300px as described in the CSS Grid spec (Note below example 19): https://www.w3.org/TR/css-grid-1/.
TimothyGu
changed the title
CSSStyleDeclaration returned by window.getComputedStyle does not follow the CCS Grid Spec
repeat() does not get resolved as per CSS Grid
Nov 29, 2021
Basic info:
Minimal reproduction case
The following code returns
repeat(auto-fill, 300px)
instead of300px 300px
as described in the CSS Grid spec (Note below example 19): https://www.w3.org/TR/css-grid-1/.How does similar code behave in browsers?
In browser, the returned value should be
300px 300px
. Link to reproducible case:https://jsfiddle.net/y67dx3fm/
The text was updated successfully, but these errors were encountered: