The last 3 tests are for grid-template-rows, which requires also display: grid, and some elements inside the grid, but the person who added the test didn't change HTML, so the test is wrongly expects a value, but in always will be 'none'.
You don't need `display: grid` in order to compute `grid-template-rows`. Actually the opposite, with `display: grid` you would get the used value in pixels, so you wouldn't be able to test the actual computed value. You are just not supporting calculations with `<flex>`: ``` CSS.supports("grid-template-rows: calc(1px)"); // true CSS.supports("grid-template-rows: calc(1fr)"); // false ``` -- You received this message because you are subscribed to the Google Groups "blink-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to blink-dev+unsubscr...@chromium.org. To view this discussion visit https://groups.google.com/a/chromium.org/d/msgid/blink-dev/12ef2b18-dc05-4678-abef-e6ff71b7b762n%40chromium.org.