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

Side by Side Diff: LayoutTests/fast/regions/counters/extract-list-items-001-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, ul {
9 margin: 0;
10 padding: 0;
11 }
12 .region {
13 width: 200px;
14 background-color: lightgray;
15 margin: 1em 2em;
16 }
17 </style>
18 </head>
19 <body>
20 <p>This test passes if there are two gray rectangles, each with a 4 item s list in it.<br>
21 The first list should not be numbered and the second should be numbered, starting at 1.<br>
22 Both the list markers for the first list and the numbers for the second list should be outside of the gray rectangles.
23 </p>
24 <div class="region">
25 <ul>
26 <li>Unordered list, item 1</li>
27 <li>Unordered list, item 2</li>
28 <li>Unordered list, item 3</li>
29 <li>Unordered list, item 4</li>
30 </ul>
31 </div>
32 <div class="region">
33 <ol>
34 <li>Ordered list, item 1</li>
35 <li>Ordered list, item 2</li>
36 <li>Ordered list, item 3</li>
37 <li>Ordered list, item 4</li>
38 </ol>
39 </div>
40 </body>
41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698