summaryrefslogtreecommitdiffstats
path: root/layout/reftests/counter-style/system-extends.html
blob: cb51626d37bded951826101a203f4a7f907923aa (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>
<link rel="stylesheet" href="test-common.css">
<style type="text/css">
  @counter-style a {
    system: extends upper-roman;
    prefix: "Chapter ";
    range: 1 5;
  }
  @counter-style b {
    system: extends a;
    prefix: "Section ";
    range: 1 6;
  }
</style>
<ol start="-2" style="list-style-type: a">
  <li><li><li><li><li>
  <li><li><li><li><li>
</ol>
<ol start="-2" style="list-style-type: b">
  <li><li><li><li><li>
  <li><li><li><li><li>
</ol>