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

Side by Side Diff: LayoutTests/fast/borders/border-antialiasing.html

Issue 25687002: Add support for the column-fill property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Put changes to problematic files (for the bots) back in. Created 7 years, 2 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 div { 6 div {
7 -webkit-transform-origin: top left; 7 -webkit-transform-origin: top left;
8 margin: 10px; 8 margin: 10px;
9 } 9 }
10 table { 10 table {
11 margin: 20px; 11 margin: 20px;
12 } 12 }
13 table.collapsed { 13 table.collapsed {
14 border-collapse: collapse; 14 border-collapse: collapse;
15 } 15 }
16 td { 16 td {
17 height: 10px; 17 height: 10px;
18 width: 10px; 18 width: 10px;
19 border: 1px solid black; 19 border: 1px solid black;
20 } 20 }
21 21
22 .shrunk { 22 .shrunk {
23 -webkit-transform: scale(0.35); 23 -webkit-transform: scale(0.35);
24 } 24 }
25 25
26 .columns { 26 .columns {
27 -webkit-column-width: 10px; 27 -webkit-column-width: 10px;
28 -webkit-column-rule: 1px solid black;
29 column-width: 10px;
30 column-rule: 1px solid black;
31 column-fill: auto;
28 width: 600px; 32 width: 600px;
29 height: 100px; 33 height: 100px;
30 -webkit-column-rule: 1px solid black;
31 } 34 }
32 35
33 .outlines span { 36 .outlines span {
34 outline: 1px solid black; 37 outline: 1px solid black;
35 margin: 4px; 38 margin: 4px;
36 padding: 2px; 39 padding: 2px;
37 } 40 }
38 </style> 41 </style>
39 </head> 42 </head>
40 <body> 43 <body>
(...skipping 21 matching lines...) Expand all
62 <div class="outlines"> 65 <div class="outlines">
63 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span> 66 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span>
64 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span> 67 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span>
65 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span> 68 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span>
66 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span> 69 <span>I am a span<br>I am</span> <span>I am<br>a span I am</span>
67 </div> 70 </div>
68 </div> 71 </div>
69 72
70 </body> 73 </body>
71 </html> 74 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698