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

Side by Side Diff: LayoutTests/fast/multicol/newmulticol/layers-split-across-columns-expected.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 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 .container { display:inline-block; width:220px; } 4 .container { display:inline-block; width:220px; }
5 .multicol { -moz-column-width:100px; -webkit-column-width:100px; height:300px; b order:5px solid black; -webkit-column-gap: 10px; -moz-column-gap: 10px } 5 .multicol { -moz-column-width:100px; -moz-column-gap:10px; -webkit-column-width: 100px; -webkit-column-gap:10px; column-width:100px; column-gap:10px; column-fill :auto; height:300px; border:5px solid black; }
6 .block { width:100px; height:100px } 6 .block { width:100px; height:100px }
7 .block:hover { background-color: maroon !important; } 7 .block:hover { background-color: maroon !important; }
8 .layer { height:400px; width:100px } 8 .layer { height:400px; width:100px }
9 </style> 9 </style>
10 <body style="overflow:hidden"> 10 <body style="overflow:hidden">
11 11
12 <div class="container"> 12 <div class="container">
13 Overflow: 13 Overflow:
14 <div class="multicol"> 14 <div class="multicol">
15 <div class="block" style="display:inline-block; background-color:black"></div> 15 <div class="block" style="display:inline-block; background-color:black"></div>
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 <div class="multicol"> 59 <div class="multicol">
60 <div class="block" style="display:inline-block; background-color:black"></div> 60 <div class="block" style="display:inline-block; background-color:black"></div>
61 <div style="opacity:0.99;" class="layer"> 61 <div style="opacity:0.99;" class="layer">
62 <div class="block" style="background-color: #0000f0"></div> 62 <div class="block" style="background-color: #0000f0"></div>
63 <div class="block" style="background-color: #0000d0"></div> 63 <div class="block" style="background-color: #0000d0"></div>
64 <div class="block" style="background-color: #0000b0"></div> 64 <div class="block" style="background-color: #0000b0"></div>
65 <div class="block" style="background-color: #000090"></div> 65 <div class="block" style="background-color: #000090"></div>
66 </div> 66 </div>
67 <div class="block" style="display:inline-block; background-color:black"></div> 67 <div class="block" style="display:inline-block; background-color:black"></div>
68 </div> 68 </div>
69 </div> 69 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698