varshluck / closure-stylesheets

Automatically exported from code.google.com/p/closure-stylesheets
Apache License 2.0
0 stars 0 forks source link

Unrecognized functions used outside of CSS declaration groups are not caught by static checks #19

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Example: 

/* Does not generate error. */
@def RANDOM_COLOR randomColor('light');

/* Correctly generates error: Unknown function "randomColor". */
button {
  color: randomColor('light');
}

Original issue reported on code.google.com by cpeis...@gmail.com on 29 May 2012 at 2:48