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

Side by Side Diff: LayoutTests/compositing/geometry/composited-in-columns.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
« no previous file with comments | « no previous file | LayoutTests/css3/unicode-bidi-isolate-basic.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <style> 4 <style>
5 body { 5 body {
6 overflow: hidden; 6 overflow: hidden;
7 } 7 }
8 .container { 8 .container {
9 width: 500px; 9 width: 500px;
10 height: 300px; 10 height: 300px;
11 -webkit-column-count: 2; 11 -webkit-column-count: 2;
12 column-count: 2;
13 column-fill: auto;
12 border: 1px solid black; 14 border: 1px solid black;
13 } 15 }
14 16
15 .block { 17 .block {
16 display: inline-block; 18 display: inline-block;
17 width: 200px; 19 width: 200px;
18 height: 50px; 20 height: 50px;
19 margin: 10px; 21 margin: 10px;
20 background-color: silver; 22 background-color: silver;
21 outline: 5px solid transparent; /* increases compositing layer bounds to t est bounds math */ 23 outline: 5px solid transparent; /* increases compositing layer bounds to t est bounds math */
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 <div class="composited block"> 65 <div class="composited block">
64 <div class="composited box"></div> 66 <div class="composited box"></div>
65 </div> 67 </div>
66 <div class="block"></div> 68 <div class="block"></div>
67 <div class="block"></div> 69 <div class="block"></div>
68 </div> 70 </div>
69 71
70 <pre id="layers">Layer tree goes here in DRT</pre> 72 <pre id="layers">Layer tree goes here in DRT</pre>
71 </body> 73 </body>
72 </html> 74 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/css3/unicode-bidi-isolate-basic.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698