We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'.classa > .classb'
should be: 'descendant-or-self::*[contains(concat(" ",@class," ")," classa ")]/*[contains(concat(" ",@class," ")," classb ")]' edit: corrected on 2015-08-26
'descendant-or-self::*[contains(concat(" ",@class," ")," classa ")]/*[contains(concat(" ",@class," ")," classb ")]'
changing $selector = str_replace(']/*', ']', $selector); to $selector = str_replace(']/*[position', '][position', $selector); fixes the issue and passes regression testing
$selector = str_replace(']/*', ']', $selector);
$selector = str_replace(']/*[position', '][position', $selector);
The text was updated successfully, but these errors were encountered:
my bad, should be 'descendant-or-self::*[contains(concat(" ",@class," ")," classa ")]/*[contains(concat(" ",@class," ")," classb ")]'
Sorry, something went wrong.
No branches or pull requests
'.classa > .classb'
should be:
'descendant-or-self::*[contains(concat(" ",@class," ")," classa ")]/*[contains(concat(" ",@class," ")," classb ")]'
edit: corrected on 2015-08-26
changing
$selector = str_replace(']/*', ']', $selector);
to
$selector = str_replace(']/*[position', '][position', $selector);
fixes the issue and passes regression testing
The text was updated successfully, but these errors were encountered: