Tighten up CSS predicate member rules.

CSS predicates can't contain full blown expressions, only attribute node tests
and operators.
This commit is contained in:
Yorick Peterse 2014-10-05 23:20:10 +02:00
parent e1832adc97
commit 197cb052be
1 changed files with 2 additions and 2 deletions

View File

@ -51,8 +51,8 @@ rule
;
predicate_members
: expression { val[0] }
| operator { val[0] }
: node_test { val[0] }
| operator { val[0] }
;
operator