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

Side by Side Diff: LayoutTests/fast/regions/counters/extract-list-items-007-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 ol {
9 margin: 0;
10 padding: 0;
11 }
12 ol ol {
13 color: blue;
14 list-style-type: upper-roman;
15 }
16 .region {
17 margin: 2em;
18 background-color: lightgray;
19 width: 20em;
20 }
21 </style>
22 </head>
23 <body>
24 <p>This test passes if there is a gray rectangle with a numbered list, a s described below.<br>
25 The numbers for the list should be outside the rectangle and all items s hould render at the same indentation level.<br>
26 The second and third items in the list should be blue and numbered using roman numerals, CI and C, respectively. All the other items in the list should be black and numbered with decimal numbers corresponding to the item text.<br>
27 The final numbering of this list should be: 3, CI, C, 2, 1, 10, 11, 12, 13.</p>
28 <div class="region" id="r1">
29 <ol reversed="true">
30 <li>List item no. 3
31 <ol start="101" reversed>
32 <li>Roman-numbered list item CI</li>
33 <li>Roman-numbered list item C</li>
34 </ol>
35 </li>
36 <li>List item no. 2</li>
37 <li>List item no. 1</li>
38 </ol>
39 <ol start="10">
40 <li>List item no. 10</li>
41 <li>List item no. 11</li>
42 <li>List item no. 12</li>
43 <li>List item no. 13</li>
44 </ol>
45 </div>
46 </body>
47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698