- Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathcounter-set-001-ref.html
37 lines (35 loc) · 798 Bytes
/
counter-set-001-ref.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<metacharset="utf-8">
<title>CSS Lists: basic tests for 'counter-set'</title>
<linkrel="author" title="Mats Palmgren" href="mailto:mats@mozilla.org">
<style>
html,body {
color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
}
</style>
</head>
<body>
<span>7</span><!-- "7" -->
<span>0</span><!-- "0" -->
<span>7</span><!-- "7" -->
<span>6</span><!-- "6" -->
<span>0</span><!-- "0" -->
<x>
<span>2</span><!-- "2" -->
</x>
<span>3</span><!-- "3" -->
<x>
<span>0</span><!-- "0" -->
<span>2</span><!-- "2" -->
<x>
<span>2.5</span><!-- "2.5" -->
</x>
</x>
<span>3</span><!-- "3" -->
</body>
</html>