- From: Mark <markjord@gmail.com>
- Date: Thu, 2 Sep 2010 08:47:06 +0100
- To: www-svg@w3.org
- Cc: peter.moulder@monash.edu
If anyone cares, there's another error in the grammar:-
ruleset
: selector [ ',' S* selector ]*
'{' S* declaration? [ ';' S* declaration? ]* '}' S*
This rule won't parse 99.9% of existing CSS files. There is a space
missing from the front before '{'. It should be:-
ruleset
: selector [ ',' S* selector ]*
S* '{' S* declaration? [ ';' S* declaration? ]* '}' S*
Regards,
Mark.
Received on Thursday, 2 September 2010 07:47:34 UTC