summaryrefslogtreecommitdiffstats
path: root/sw/qa/extras/htmlimport/data/list-style.html
blob: 8c5468aa15fc74bb44f165340b36e17d004ba79c (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
  <body>
    <div>
      <p>
        This document contains a number of lists...
		<ul>
		  <li>list-style-type</li>
		  <li>default</li>
		</ul>
		<ul style="list-style-type: circle;">
		  <li>list-style-type</li>
		  <li>circle</li>
		</ul>
		<ul style="list-style-type: square;">
		  <li>list-style-type</li>
		  <li>square</li>
		</ul>
		<ul style="list-style-type: disc;">
		  <li>list-style-type</li>
		  <li>disc</li>
		</ul>
		<ol>
		  <li>list-style-type</li>
		  <li>default</li>
		</ol>
		<ol style="list-style-type: decimal;">
		  <li>list-style-type</li>
		  <li>decimal</li>
		</ol>
		<ol style="list-style-type: lower-alpha;">
		  <li>list-style-type</li>
		  <li>lower-alpha</li>
		</ol>
		<ol style="list-style-type: lower-latin;">
		  <li>list-style-type</li>
		  <li>lower-latin</li>
		</ol>
		<ol style="list-style-type: lower-roman;">
		  <li>list-style-type</li>
		  <li>lower-roman</li>
		</ol>
		<ol style="list-style-type: upper-alpha;">
		  <li>list-style-type</li>
		  <li>upper-alpha</li>
		</ol>
		<ol style="list-style-type: upper-latin;">
		  <li>list-style-type</li>
		  <li>upper-latin</li>
		</ol>
		<ol style="list-style-type: upper-roman;">
		  <li>list-style-type</li>
		  <li>upper-roman</li>
		</ol>
      </p>
    </div>
  </body>
</html>