File: extract-list-items-008-ref.html

package info (click to toggle)
firefox-esr 68.10.0esr-1~deb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,143,932 kB
  • sloc: cpp: 5,227,879; javascript: 4,315,531; ansic: 2,467,042; python: 794,975; java: 349,993; asm: 232,034; xml: 228,320; sh: 82,008; lisp: 41,202; makefile: 22,347; perl: 15,555; objc: 5,277; cs: 4,725; yacc: 1,778; ada: 1,681; pascal: 1,673; lex: 1,417; exp: 527; php: 436; ruby: 225; awk: 162; sed: 53; csh: 44
file content (78 lines) | stat: -rw-r--r-- 2,525 bytes parent folder | download | duplicates (4)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
	<head>
		<title>CSS Reftest Reference</title>
		<link rel="author" title="Mihai Balan" href="mailto:mibalan@adobe.com">
		<style>
		.container {
			color: #006400;
			background-color: lightgreen;
			margin: 2em;

		}
		.region {
			margin: 2em;
			background-color: lightblue;
			color: blue;
		}
		.region > ul,
		.region > ol {
			padding: 0;
			margin: 0;
		}
		.circle {
			list-style-type: circle;
		}
		.disc {
			list-style-type: disc;
		}
		.decimal {
			list-style-type: decimal;
		}
		.roman {
			list-style-type: upper-roman;
		}
		</style>
	</head>
	<body>
		<p>Test passes if you see two rectangles, one green and one blue, as described below:<br>
		The green rectangle should contain two lists, separated by a small vertical space. The <strong>first list</strong> should be a numbered list starting with 2 that has 2 items;  the <strong>second list</strong> should be a bullet list with 3 items, the last one being indented and with a different type of bullet.<br>
		The blue rectangle should contain a list with items numbered/marked in different ways, as follows. Except where noted, the numbers/markers should be <em>outside</em> the the blue rectangle. The <strong>first item</strong> should be numbered with the number 1, in decimal. The <strong>second item</strong> should be bulleted. The <strong>third and fourth items</strong> should be numbered with 2 and 1 respectively, with roman numerals. Also, the <strong>third item</strong> should be indented (with the number inside the blue rectangle). The <strong>fourth and fifth items</strong> should be bulleted, with the <strong>fourth item</strong> having a different kind of bullet than the second and fifth item.
		</p>
		<div class="container">
			<ol start="2" class="decimal">
				<li>Numbered list, item 2</li>
				<li>Numbered list, item 3</li>
			</ol>
			<ul class="disc">
				<li>Bullet list, item 1</li>
				<li>Bullet list, item 3
					<ul class="circle">
						<li>Bullet sub-list, item 2</li>
					</ul>
				</li>
			</ul>
		</div>
		<div class="region" id="r1">
			<ol class="decimal">
				<li>Numbered list, item 1</li>
			</ol>
			<ul class="disc">
				<li>Bullet list, item 2
					<ol class="roman" start="2">
						<li>Numbered sub-list, item II</li>
					</ol>
				</li>
			</ul>
			<ol class="roman">
				<li>Numbered sub-list, item I</li>
			</ol>
			<ul class="circle">
				<li>Bullet sub-list, item 1</li>
			</ul>
			<ul class="disc">
				<li>Bullet list, item 4</li>
			</ul>
		</div>
	</body>
</html>