summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-lists/counter-reset-reversed-list-item-start.html
blob: 4c8039b25d499bc59ee95806543f6cb8090f8979 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Lists: counter-reset reversed(list-item) with start value</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) 10 }
  .result::before { content: counter(list-item) }
  ::marker { content: none; }
  .li:not(.result) { height: 0 }
</style>
<p>You should see the number 7 below.</p>
<div>
  <span class="li reset-reversed"></span>
  <span class="li"></span>
  <span class="li result"></span>
  <span class="li"></span>
  <span class="li"></span>
  <span class="li"></span>
  <span class="li"></span>
</div>