You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A descendant combinator is whitespace that separates two sequences of simple selectors.
Actual behavior
ok 1 - selector "ul li"
not ok 2 - selector "ul\tli"
# Failed test 'selector "ul\tli"'
# at mojo-dom-bug-4.pl line 19.
# Structures begin differing at:
# $got->[0] = Does not exist
# $expected->[0] = '<li>Ax1</li>'
ok 3 - selector "ul \tli"
not ok 4 - selector "ul\t li"
# Failed test 'selector "ul\t li"'
# at mojo-dom-bug-4.pl line 19.
# Structures begin differing at:
# $got->[0] = Does not exist
# $expected->[0] = '<li>Ax1</li>'
1..4
# Looks like you failed 2 tests of 4.
The text was updated successfully, but these errors were encountered:
Steps to reproduce the behavior
Expected behavior
Test passes.
https://www.w3.org/TR/selectors-3/#descendant-combinators:
Actual behavior
The text was updated successfully, but these errors were encountered: