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
Currently the test_immediate_child_with_additional_child_selector fails because the selector tests are run against the MATCHED element, rather than the intermediate layer.
The CSS used in this test is:
.wrapper > .header input { ... }
Although it will initially match on input, once it sees the > operator it will check for an immediate parent of input with the wrapper class, instead of a parent of input with class header that has an immediate parent wrapper.
Passing the failing test should be sufficient to prove this is resolved.
Currently the
test_immediate_child_with_additional_child_selector
fails because the selector tests are run against the MATCHED element, rather than the intermediate layer.The CSS used in this test is:
.wrapper > .header input { ... }
Although it will initially match on
input
, once it sees the>
operator it will check for an immediate parent ofinput
with thewrapper
class, instead of a parent ofinput
with classheader
that has an immediate parentwrapper
.Passing the failing test should be sufficient to prove this is resolved.
The text was updated successfully, but these errors were encountered: