Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(546)

Side by Side Diff: LayoutTests/fast/regions/counters/extract-list-items-004-expected.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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-unordered-1 {
9 padding: 0;
10 }
11 #r2 ol, #r2 ul {
12 padding: 0;
13 }
14
15 #outer-unordered-1 ul,
16 #outer-unordered-2 ul {
17 color: blue;
18 }
19
20 #outer-unordered-2 ul ul {
21 color: green;
22 }
23
24 .region {
25 margin: 2em;
26 background-color: lightgray;
27 width: 20em;
28 }
29 </style>
30 </head>
31 <body>
32 <p>This test passes if there are two gray rectangles: each with a list with another lists nested in it. The list markers for the black list in the firs t rectangle, and for all the lists in the second rectangle should be rendered ou tside of the gray boxes</p>
33 <p>The list in the first rectangle should be black, with two blue nested lists in it. The nested lists should appear after the first and the second item s, they should be indented and use a different kind of bullet.</p>
34 <p>The list in the second rectangle should be black, with a blue nested list in it that has in turn a nested green list in it. Each of the black, blue a nd green list should use different kinds of bullets and list items of the same c olor should have the same kind of bullet.</p>
35 <div class="region" id="r1">
36 <ul id="outer-unordered-1">
37 <li>First unordered list, item 1
38 <ul>
39 <li>First inner unordered list, item 1</li>
40 <li>First inner unordered list, item 2</li>
41 <li>First inner unordered list, item 3</li>
42 </ul>
43 </li>
44 <li>First unordered list, item 2
45 <ul>
46 <li>Second inner unordered list, item 1</li>
47 <li>Second inner unordered list, item 2</li>
48 </ul>
49 </li>
50 <li>First unordered list, item 3</li>
51 </ul>
52 </div>
53 <div class="region" id="r2">
54 <ul id="outer-unordered-2">
55 <li>Second unordered list, item 1</li>
56 <li>Second unordered list, item 2
57 <ul>
58 <li>Last inner unordered list, item 1</li>
59 <li>Last inner unordered list, item 2
60 <ul>
61 <li>Innermost unordered list, item 1</li>
62 <li>Innermost unordered list, item 2</li>
63 </ul>
64 </li>
65 <li>Last inner unordered list, item 3</li>
66 <li>Last inner unordered list, item 4</li>
67 </ul>
68 </li>
69 <li>Second unordered list, item 3</li>
70 </ul>
71 </div>
72 </body>
73 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698