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

Side by Side Diff: LayoutTests/fast/regions/counters/extract-list-items-015-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, li {
9 margin: 0;
10 padding: 0;
11 }
12 .box {
13 float: left;
14 width: 20em;
15 height: 10em;
16 margin: 0 2em;
17 }
18 #container {
19 background-color: lightgray;
20 }
21 #region {
22 background-color: lightgreen;
23 }
24 </style>
25 </head>
26 <body>
27 <p>This test passes if you see two rectangles, each with a numbered list inside, as described below. The numbers for both of the lists should be rendere d outside (to the left) of the respective rectangles.</p>
28 <p>The first rectangle should be lightgray and contain a numbered list w ith 5 items. The items should be numbered with 2, 3, 8, 10 and 11 respectively.< /p>
29 <p>The second rectangle should be lightgreen and contain a numbered list with 4 items. The items should be numbered with 1, 6, 7 and 9 respectively.</p>
30 <div class="box" id="container">
31 <ol>
32 <li value="2">List item 2</li>
33 <li value="3">List item 3</li>
34 <li value="8">List item 8</li>
35 <li value="10">List item 10</li>
36 <li value="11">List item 11</li>
37 </ol>
38 </div>
39 <div class="box" id="region">
40 <ol>
41 <li value="1">List item 1</li>
42 <li value="6">List item 6</li>
43 <li value="7">List item 7</li>
44 <li value="9">List item 9</li>
45 </ol>
46 </div>
47 </body>
48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698