aboutsummaryrefslogtreecommitdiffstats
path: root/test/data
diff options
context:
space:
mode:
Diffstat (limited to 'test/data')
-rw-r--r--test/data/shr/ol.html29
-rw-r--r--test/data/shr/ol.txt19
2 files changed, 48 insertions, 0 deletions
diff --git a/test/data/shr/ol.html b/test/data/shr/ol.html
new file mode 100644
index 00000000000..f9a15f26409
--- /dev/null
+++ b/test/data/shr/ol.html
@@ -0,0 +1,29 @@
1<ol>
2 <li>one</li>
3 <li>two</li>
4 <li>three</li>
5</ol>
6
7<ol start="10">
8 <li>ten</li>
9 <li>eleven</li>
10 <li>twelve</li>
11</ol>
12
13<ol start="0">
14 <li>zero</li>
15 <li>one</li>
16 <li>two</li>
17</ol>
18
19<ol start="-5">
20 <li>minus five</li>
21 <li>minus four</li>
22 <li>minus three</li>
23</ol>
24
25<ol start="notanumber">
26 <li>one</li>
27 <li>two</li>
28 <li>three</li>
29</ol>
diff --git a/test/data/shr/ol.txt b/test/data/shr/ol.txt
new file mode 100644
index 00000000000..0d46e2a8ddb
--- /dev/null
+++ b/test/data/shr/ol.txt
@@ -0,0 +1,19 @@
11 one
22 two
33 three
4
510 ten
611 eleven
712 twelve
8
90 zero
101 one
112 two
12
13-5 minus five
14-4 minus four
15-3 minus three
16
171 one
182 two
193 three