Re: Allow whitespace before the commas?

Andrey Mikhalev wrote:
> 
> On Mon, 8 Dec 2008, fantasai wrote:
> 
>>
>> Unless I'm missing something we need to replace
>>  : selector [ COMMA S* selector ]*
>> with
>>  : selector [ S* COMMA S* selector ]*
> 
> i think (in css2.1) tokens
> {w}","            {return COMMA;}
> ...etc.
> intended for elimination parser state conflict between
> selector S+ selector
> and
> selector S* COMMA S* selector
> ...etc.

Thanks, Andrey. I think you're right. I guess that solves
the grammar problem, then. :)

Added
   "White space may appear before and/or after the comma."
to the prose.

~fantasai

Received on Monday, 29 December 2008 23:28:59 UTC