Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-lists/counter-reset-reversed-list-item.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Lists: counter-reset reversed(list-item)</title> <link rel="help" href="https://drafts.csswg.org/css-lists/#counter-reset"> <link rel="match" href="counter-7-ref.html"> <style> .li { display: list-item; } .reset-reversed { counter-reset: reversed(list-item) } .result::before { content: counter(list-item) } ::marker { content: none; } </style> <p>You should see the number 7 below.</p> <div> <span class="li result reset-reversed"></span> <span class="li"></span> <span class="li"></span> <span class="li"></span> <span class="li"></span> <span class="li"></span> <span class="li"></span> </div>
/css/css-lists/counter-7-ref.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Test Reference</title> <link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org"> <p>You should see the number 7 below.</p> <div>7</div>