Skip to content

Commit

Permalink
[Fix CSSLint#131] Add support for the 'fr' unit
Browse files Browse the repository at this point in the history
[Fix CSSLint#131] Add support for the 'fr' unit
  • Loading branch information
kkirsche authored and gouch committed Jan 9, 2016
1 parent b6a2cbb commit a811e24
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/css/PropertyValuePart.js
Expand Up @@ -50,6 +50,10 @@ function PropertyValuePart(text, line, col){
case "vmin":
this.type = "length";
break;

case "fr":
this.type = "grid";
break;

case "deg":
case "rad":
Expand Down

0 comments on commit a811e24

Please sign in to comment.