OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>CSS Test: flow-into only on specific list items from multiple lis
ts + list item formatting via :nth-child, :nth-of-type</title> | |
5 <link rel="author" title="Mihai Balan" href="mibalan@adobe.com"> | |
6 <link rel="help" href="http://www.w3.org/TR/css3-regions/#properties-and
-rules" /> | |
7 <link rel="help" href="http://www.w3.org/TR/css3-regions/#the-flow-into-
property" /> | |
8 <link rel="stylesheet" type="text/css" href="../resources/font-smoothing
-disabler.css"> | |
9 <meta name="flags" content=""> | |
10 <meta name="assert" content="Test checks that extracting only certain li
st items from a list into a named flow does not affect styling via pseudo-classe
s such as :first-child or :nth-child"> | |
11 <style> | |
12 .container { | |
13 background-color: lightgreen; | |
14 color: #006400; | |
15 margin: 2em; | |
16 } | |
17 | |
18 .extract , | |
19 #theItem { | |
20 -webkit-flow-into: f1; | |
21 } | |
22 | |
23 #first li:first-child, | |
24 li:nth-child(even), | |
25 li:nth-of-type(4n) { | |
26 color: blue; | |
27 } | |
28 #first { | |
29 list-style-type: decimal; | |
30 } | |
31 #second { | |
32 list-style-type: disc; | |
33 } | |
34 #third { | |
35 list-style-type: upper-latin; | |
36 } | |
37 .region { | |
38 margin: 2em; | |
39 background-color: lightblue; | |
40 } | |
41 #r1 { | |
42 -webkit-flow-from: f1; | |
43 } | |
44 </style> | |
45 </head> | |
46 <body> | |
47 <!-- Individual list items are extracted from ordered/unordered lists. S
ome of them remain | |
48 in the normal document flow while others are rendered in a region. Pseud
o-elements are used | |
49 to format the extracted list items. Things like children counting should
not be affected by | |
50 the items being extracted in the named flow. --> | |
51 <p>Test passes if you see two rectangles, one green and one blue, as des
cribed below:<br> | |
52 The green rectangle should contain three lists, separated by a small ver
tical space. The <strong>first list</strong> should be a numbered list starting
at 3, with only one item. The <strong>second list</strong> should be a bulleted
list with three items. The <strong>third list</strong> should be a numbered list
with two items, numbered A and C respectively.<br> | |
53 The blue rectangle should contain a list with items numbered/marked in a
different ways, as follows. As opposed to the green rectangle, the numbers/mark
ings for the list items in the blue rectangle should be outside the rectangle. T
he <strong>first and second items</strong> should be numbered with 1 and 2 (deci
mal). The <strong>third and fourth items</strong> should be bulleted. The <stron
g>fifth and sixth items</strong> should be numbered with B and D respectively.</
p> | |
54 <div class="container"> | |
55 <ol id="first"> | |
56 <li id="theItem">First numbered list, item 1</li> | |
57 <li class="extract">First numbered list, item 2</li> | |
58 <li>First numbered list, item 3</li> | |
59 </ol> | |
60 <ul id="second"> | |
61 <li>Bullet list, item 1</li> | |
62 <li class="extract">Bullet list, item 2</li> | |
63 <li>Bullet list, item 3</li> | |
64 <li class="extract">Bullet list, item 4</li> | |
65 <li>Bullet list, item 5</li> | |
66 </ul> | |
67 <ol id="third"> | |
68 <li>Second numbered list, item A</li> | |
69 <li class="extract">Second numbered list, item B</li> | |
70 <li>Second numbered list, item C</li> | |
71 <li class="extract">Second numbered list, item D</li> | |
72 </ol> | |
73 </div> | |
74 <div class="region" id="r1"></div> | |
75 </body> | |
76 </html> | |
OLD | NEW |