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

Side by Side Diff: LayoutTests/fast/repaint/multicol-repaint.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 lang="en"> 3 <html lang="en">
4 <head> 4 <head>
5 <style type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 6
7 .container { 7 .container {
8 width: 400px; 8 width: 400px;
9 height: 100px; 9 height: 100px;
10 border: 1px solid black; 10 border: 1px solid black;
11 font-size: 50px; 11 font-size: 50px;
12 -webkit-column-count: 2; 12 -webkit-column-count: 2;
13 column-count: 2;
14 column-fill: auto;
13 } 15 }
14 16
15 span { 17 span {
16 font-family: Ahem; 18 font-family: Ahem;
17 } 19 }
18 </style> 20 </style>
19 <script src="resources/repaint.js" type="text/javascript"></script> 21 <script src="resources/repaint.js" type="text/javascript"></script>
20 <script type="text/javascript"> 22 <script type="text/javascript">
21 function repaintTest() 23 function repaintTest()
22 { 24 {
23 document.getElementById('a').innerHTML = 'XXXXXX'; 25 document.getElementById('a').innerHTML = 'XXXXXX';
24 } 26 }
25 </script> 27 </script>
26 </head> 28 </head>
27 <body onload="runRepaintTest();"> 29 <body onload="runRepaintTest();">
28 30
29 <div class="container"> 31 <div class="container">
30 &nbsp;<br> 32 &nbsp;<br>
31 <span id="a">x</span> 33 <span id="a">x</span>
32 </div> 34 </div>
33 </body> 35 </body>
34 </html> 36 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/regions/region-style-in-columns.html ('k') | LayoutTests/fast/sub-pixel/column-clipping.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698