Bug 1349553: Account for negations of state-dependent selectors.

MozReview-Commit-ID: VyHuxh9q5N
Signed-off-by: Emilio Cobos Álvarez <emilio@crisal.io>
This commit is contained in:
Emilio Cobos Álvarez 2017-03-22 14:41:22 +01:00
parent 2b99c76052
commit ab2956a815
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
2 changed files with 19 additions and 1 deletions

View file

@ -154,6 +154,9 @@ macro_rules! pseudo_class_name {
$s_name(Box<[u16]>),
)*
/// The non-standard `:-moz-any` pseudo-class.
///
/// TODO(emilio): We disallow combinators and pseudos here, so we
/// should use SimpleSelector instead
MozAny(Vec<ComplexSelector<SelectorImpl>>),
}
}