Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-lists/counter-reset-inside-display-contents.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Lists: counter-reset on child of display:contents</title> <link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org"> <link rel="help" href="https://drafts.csswg.org/css-lists/#counters-without-boxes"> <link rel="match" href="counter-7-ref.html"> <style> .inc { counter-increment: x } .reset-6 { counter-reset: x 6 } .reset-666 { counter-reset: x 6 } .contents { display: contents } .result::before { content: counter(x) } </style> <p>You should see the number 7 below.</p> <div> <span class="reset-6"></span> <span class="contents"> <span class="reset-666"></span> </span> <span class="inc result"></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>