summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-lists/ol-change-display-type-ref.html
blob: a10bc17899f9cfaa938d04d198598c4fc82fe3ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<meta charset="utf-8">
<link rel=help href="https://crbug.com/1020669">
<style>
  .item {
    display: list-item;
  }
  .item:after {
    content: counter(section);
    display: list-item;
  }
  .table-header {
    display: table-header-group;
  }
</style>
<body>
  <ol reversed="reversed">
    <span class="table-header">
      <figure class="item"></figure>
    </span>
  </ol>
</body>
</html>