[project @ 2005-01-08 01:42:08 by jmb]

Fix parsing of multiple occurrences of S
Fix parsing of blocks (missing ws after any)

svn path=/import/netsurf/; revision=1436
This commit is contained in:
John Mark Bell 2005-01-08 01:42:08 +00:00
parent fbe6486e0b
commit 0890fd790d
1 changed files with 2 additions and 1 deletions

View File

@ -35,6 +35,7 @@ ws ::= .
ws ::= ws_1.
ws_1 ::= S.
ws_1 ::= ws_1 S.
statement_list ::= .
statement_list ::= statement_list statement.
@ -52,7 +53,7 @@ at_rule ::= ATKEYWORD(A) ws any_list(B) SEMI ws.
block ::= LBRACE ws block_body RBRACE ws.
block_body ::= .
block_body ::= block_body any.
block_body ::= block_body any ws.
block_body ::= block_body block.
block_body ::= block_body ATKEYWORD ws.
block_body ::= block_body SEMI ws.