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

Side by Side Diff: LayoutTests/fast/sub-pixel/column-clipping.html

Issue 25687002: Add support for the column-fill property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 <html> 2 <html>
3 <style> 3 <style>
4 body > div { 4 body > div {
5 -webkit-column-count: 2; 5 -webkit-column-count: 2;
6 -webkit-column-fill: auto;
7 column-count: 2;
8 column-fill: auto;
6 width: 51px; 9 width: 51px;
7 position: absolute; 10 position: absolute;
8 left: 0px; 11 left: 0px;
9 top: 0px; 12 top: 0px;
10 } 13 }
11 div > div { 14 div > div {
12 width: 10px; 15 width: 10px;
13 height: 10px; 16 height: 10px;
14 background-color: green; 17 background-color: green;
15 border: 1px solid black; 18 border: 1px solid black;
16 position: relative; 19 position: relative;
17 } 20 }
18 </style> 21 </style>
19 <body> 22 <body>
20 <div> 23 <div>
21 <div></div> 24 <div></div>
22 <div></div> 25 <div></div>
23 </div> 26 </div>
24 </body> 27 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698