summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-lists/counter-reset-reversed-list-item.html
blob: 40706fdf97f7396c9ee67b5496dcb30eef99208e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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>