File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
org/w3c/css/parser/analyzer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2645,7 +2645,7 @@ void pseudo_element_selector(CssSelectors s) :
2645
2645
}
2646
2646
}
2647
2647
)
2648
- | ( ( n=<FUNCTIONSLOTTED> ) ( <S> )* sel=compound_selector(null) <RPAREN> ) {
2648
+ | ( ( n=<FUNCTIONSLOTTED> ) ( <S> )* sel=compound_selector(null) ( <S> )* <RPAREN> ) {
2649
2649
try {
2650
2650
ArrayList<CssSelectors> list = new ArrayList<CssSelectors>();
2651
2651
list.add(sel);
@@ -2732,7 +2732,7 @@ String error_str = null;
2732
2732
getBeginColumn(), getEndLine(), getEndColumn(), e));
2733
2733
}
2734
2734
}
2735
- | ( ( n=<FUNCTIONHOST> | n=<FUNCTIONHOSTCONTEXT> ) ( <S> )* sel=compound_selector(null) ) {
2735
+ | ( ( n=<FUNCTIONHOST> | n=<FUNCTIONHOSTCONTEXT> ) ( <S> )* sel=compound_selector(null) ( <S> )* ) {
2736
2736
try {
2737
2737
ArrayList<CssSelectors> list = new ArrayList<CssSelectors>();
2738
2738
list.add(sel);
You can’t perform that action at this time.
0 commit comments