allow pseudo selectors within pseudo selectors

0.3.9
Eric Chiang 9 years ago
parent 775989779e
commit db016ce23c

@ -604,9 +604,6 @@ func parseNotPseudo(cmd string) (PseudoClass, error) {
if err != nil {
return nil, err
}
if selector.Pseudo != nil {
return nil, fmt.Errorf("selector within ':not' may not contain a pseudo class")
}
if endQuote != ')' {
return nil, fmt.Errorf("unmatched '('")
}
@ -627,9 +624,6 @@ func parseParentOfPseudo(cmd string) (PseudoClass, error) {
if err != nil {
return nil, err
}
if selector.Pseudo != nil {
return nil, fmt.Errorf("selector within ':parent-of' may not contain a pseudo class")
}
if endQuote != ')' {
return nil, fmt.Errorf("unmatched '('")
}

Loading…
Cancel
Save