wpt / css / css-lists / counter-reset-reversed-siblings-001a.html

Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-lists/counter-reset-reversed-siblings-001a.html

<!doctype html>
<title>CSS Lists: sibling elements with counter-reset: reversed()</title>
<link rel="help" href="https://drafts.csswg.org/css-lists/#counter-reset">
<link rel="help" href="https://drafts.csswg.org/css-lists/#counter-scope">
<link rel="help" href="https://drafts.csswg.org/css-lists/#nested-counters">
<link rel="help" href="https://drafts.csswg.org/css-lists/#inheriting-counters">
<link rel="author" title="Minseong Kim" href="mailto:jja08111@gmail.com">
<link rel="match" href="counter-reset-reversed-siblings-001-ref.html">
<style>
.counter-use::before {
  content: counter(foo);
}
</style>
<div style="counter-reset: reversed(foo)">
  <div class="counter-use" style="counter-increment: foo -1;"></div>
</div>
<div class="counter-use" style="counter-increment: foo -2;"></div>

/css/css-lists/counter-reset-reversed-siblings-001-ref.html

<!doctype html>
<title>CSS Lists Reference: sibling elements with counter-reset: reversed()</title>
<style>
  .d::before { content: attr(data-val); }
</style>
<div class="d" data-val="4"></div>
<div class="d" data-val="2"></div>