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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/backgrounds/background-position-repeat-rendering-2-expected.html

Issue 2709153003: Fix repeat background position problem (Closed)
Patch Set: Created 3 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 <title>Test non-top-left background-position anchors together with repeating bac kgrounds</title>
3 <style>
4 body { margin: 0 }
5 .rightnormal {
6 width: 30px;
7 height: 100px;
8 }
9 .rightnarrow {
10 width: 10px;
11 height: 100px;
12 }
13 .bottomnormal {
14 width: 100px;
15 height: 30px;
16 }
17 .bottomnarrow {
18 width: 100px;
19 height: 10px;
20 }
21 .limecolor {
22 background-color: lime;
23 }
24 .redcolor {
25 background-color: red;
26 }
27 </style>
28 <table cellpadding='0' cellspacing='0'>
29 <tr>
30 <td>
31 <div class='rightnarrow redcolor'</div>
32 </td>
33 <td>
34 <div class='rightnormal limecolor'</div>
35 </td>
36 <td>
37 <div class='rightnormal redcolor'</div>
38 </td>
39 <td>
40 <div class='rightnormal limecolor'</div>
41 </td>
42 </tr>
43 </table>
44
45 <div class='bottomnarrow redcolor'></div>
46 <div class='bottomnormal limecolor'></div>
47 <div class='bottomnormal redcolor'></div>
48 <div class='bottomnormal limecolor'></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698