OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>CSS Reftest Reference</title> | |
5 <link rel="author" title="Mihai Balan" href="mibalan@adobe.com"> | |
6 <link rel="stylesheet" type="text/css" href="../resources/font-smoothing
-disabler.css"> | |
7 <style> | |
8 .outer-mixed-1 ul, | |
9 .outer-mixed-1 ol { | |
10 color: blue; | |
11 } | |
12 | |
13 .outer-mixed-1 { | |
14 padding: 0; | |
15 margin: 0; | |
16 } | |
17 | |
18 .region { | |
19 margin: 2em; | |
20 background-color: lightgray; | |
21 width: 20em; | |
22 } | |
23 </style> | |
24 </head> | |
25 <body> | |
26 <p>This test passes if there is a gray rectangle with two black lists in
it, as described below.<br> | |
27 The first black list is a bulleted list that has a blue numbered list in
it.<br> | |
28 The second black list is a numbered list that has two blue nested lists
in it: the first nested list is a bulleted list with three items, and the second
list is a numbered list with two items.</p> | |
29 <p>The numbers and bullets for the black lists should be rendered outsid
e the gray rectangle, while the blue list items should be indented. Also, the bl
ue bulleted list should have a different type of bullets than the black bulleted
list.</p> | |
30 <div class="region" id="r1"> | |
31 <ul class="outer-mixed-1"> | |
32 <li>Unordered list, item 1 | |
33 <ol> | |
34 <li>Inner ordered list, item 1</li> | |
35 <li>Inner ordered list, item 2</li> | |
36 <li>Inner ordered list, item 3</li> | |
37 </ol> | |
38 </li> | |
39 <li>Unordered list, item 2</li> | |
40 </ul> | |
41 <ol class="outer-mixed-1"> | |
42 <li>Ordered list, item 1 | |
43 <ul> | |
44 <li>Unordered inner list, item 1</li> | |
45 <li>Unordered inner list, item 2</li> | |
46 <li>Unordered inner list, item 3</li> | |
47 </ul> | |
48 </li> | |
49 <li>Ordered list, item 2 | |
50 <ol> | |
51 <li>Second inner ordered list, item 1</li> | |
52 <li>Second inner ordered list, item 2</li> | |
53 </ol> | |
54 </li> | |
55 </ol> | |
56 </div> | |
57 </body> | |
58 </html> | |
OLD | NEW |