Skipping over pseudo contexts has fixed most of the tests.

This commit is contained in:
Tom Alexander
2020-05-30 11:50:55 -04:00
parent f04e84dc31
commit 3c9a369908
4 changed files with 46 additions and 11 deletions

View File

@@ -68,6 +68,10 @@ impl Walkable for IterationContext {
_ => Err(WalkError::CantWalk),
}
}
fn is_pseudo_element(&self) -> bool {
true
}
}
impl CompareContextElement for IterationContext {