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

Side by Side Diff: LayoutTests/fast/regions/counters/extract-list-items-013-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 ul, ol {
9 margin: 0;
10 }
11 .ordered {
12 list-style-type: lower-latin;
13 }
14 .unordered {
15 list-style-type: circle;
16 }
17 .container {
18 color: #006400;
19 background-color: lightgreen;
20 margin: 2em;
21 float: left;
22 width: 15em;
23 }
24 .region {
25 color: blue;
26 margin: 2em;
27 background-color: lightblue;
28 float: left;
29 width: 15em;
30 }
31
32 .region > ul,
33 .region > ol {
34 padding: 0;
35 margin: 0;
36 }
37 .hide {
38 visibility: hidden;
39 height: 0;
40 }
41 </style>
42 </head>
43 <body>
44 <p>Test passes if you see two rectangles, one green and one blue, as des cribed below.</p>
45 <p>The green rectangle should contain a list with items numbered/marked as such: the <strong>first two items</strong> should be numbered with small lati n letters, starting with d. The <strong>next three items</strong> should be bull eted with a circle. The numbers/bullets should all be <em>inside</em> the green rectangle.</p>
46 <p>The blue rectangle should contain a list with items numbered/marked a s such: the <strong>first three items</strong> should be numbered with small lat in letters, starting with a. The <strong>next two items</strong> should be bulle ted with a circle. The numbers/bullets should all be <em>outside</em> the blue r ectangle.</p>
47
48 <div class="container">
49 <ul class="ordered" start="4">
50 <li class="hide"></li>
51 <li class="hide"></li>
52 <li class="hide"></li>
53 <li>Ordered list, item d</li>
54 <li>Ordered list, item e</li>
55 </ul>
56 <ol class="unordered">
57 <li>Unordered list, item 1</li>
58 <li>Unordered list, item 2</li>
59 <li>Unordered list, item 3</li>
60 </ol>
61 </div>
62 <div class="region" id="r1">
63 <ul class="ordered">
64 <li>Ordered list, item a</li>
65 <li>Ordered list, item b</li>
66 <li>Ordered list, item c</li>
67 </ul>
68 <ol class="unordered">
69 <li>Unordered list, item 4</li>
70 <li>Unordered list, item 5</li>
71 </ol>
72 </div>
73 </body>
74 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698