wpt / css / selectors / nth-child-of-nesting.html

Status: FAIL | Duration: 15ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/selectors/nth-child-of-nesting.html

<!doctype html>
<html>
<head>
<title>:nth-last-child nesting</title>
<link rel="help" href="https://drafts.csswg.org/selectors-4/#child-index">
<link rel=author href="mailto:zach@zrhoffman.net" title="Zach Hoffman">
<link rel="match" href="nth-child-of-nesting-ref.html">
<style>
:nth-child(2n + 1 of :nth-child(n of .target)) {
    background-color: lime;
}
</style>
</head>
<body>
    <p>White</p>
    <p class="target">Green</p>
    <p>White</p>
    <p class="target">White</p>
    <p>White</p>
    <p class="target">Green</p>
    <p>White</p>
    <p class="target">White</p>
    <p>White</p>
    <p class="target">Green</p>
    <p>White</p>
    <p class="target">White</p>
</body>
</html>

/css/selectors/nth-child-of-nesting-ref.html

<!doctype html>
<html>
<body>
    <p>White</p>
    <p style="background-color: lime">Green</p>
    <p>White</p>
    <p>White</p>
    <p>White</p>
    <p style="background-color: lime">Green</p>
    <p>White</p>
    <p>White</p>
    <p>White</p>
    <p style="background-color: lime">Green</p>
    <p>White</p>
    <p>White</p>
</body>
</html>