We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4d8483 commit 824467cCopy full SHA for 824467c
src/main/javacc/CSS3Parser.jj
@@ -529,8 +529,8 @@ void styleSheetRuleList() :
529
CSSParseException cpe = toCSSParseException("invalidRule", e);
530
getErrorHandler().error(cpe);
531
getErrorHandler().warning(createSkipWarning("ignoringRule", cpe));
532
- while (t.kind != RBRACE && t.kind != EOF ) {
533
- t = getNextToken();
+ if (t.kind != RBRACE) {
+ error_skipblock(null, null);
534
}
535
if (t.kind == EOF) {
536
return;
0 commit comments