anandthakker / doiuse

:bomb: Lint CSS for browser support against caniuse database.
MIT License
1.23k stars 50 forks source link

False positive on grid-template-rows: masonry #180

Open codedpalette opened 6 months ago

codedpalette commented 6 months ago

When i use CSS property grid-template-rows with value masonry, I would expect doiuse to warn about it, since it's not supported basically everywhere (see on Caniuse DB), However, no warning is issued.

Minimal reproducible example:

// src/global.css
.test {
    grid-template-rows: masonry;
}

doiuse --browsers "defaults, not op_mini all"  src/global.css 

Expected behavior: CSS grid-template-rows: masonry not supported Actual behavior: no output