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

Side by Side Diff: LayoutTests/fast/multicol/fixed-column-percent-logical-height-orthogonal-writing-mode.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 <head> 3 <head>
4 <style> 4 <style>
5 .container { 5 .container {
6 height: 100px; 6 height: 100px;
7 width: 400px; 7 width: 400px;
8 -webkit-column-width: 100px; 8 -webkit-column-width: 100px;
9 -webkit-column-gap: 0px; 9 -webkit-column-gap: 0px;
10 -webkit-column-fill: auto;
11 column-width: 100px;
12 column-gap: 0px;
13 column-fill: auto;
10 } 14 }
11 15
12 .percentLogicalHeight { 16 .percentLogicalHeight {
13 -webkit-writing-mode: vertical-lr; 17 -webkit-writing-mode: vertical-lr;
14 height: 100%; 18 height: 100%;
15 width: 100%; 19 width: 100%;
16 background-color: navy; 20 background-color: navy;
17 } 21 }
18 </style> 22 </style>
19 </head> 23 </head>
20 <script src="../../resources/check-layout.js"></script> 24 <script src="../../resources/check-layout.js"></script>
21 <body onload="checkLayout('.percentLogicalHeight')"> 25 <body onload="checkLayout('.percentLogicalHeight')">
22 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=103075">Bug 103075</a>: Rend erBox::computePercentageLogicalHeight should use containingBlockLogicalWidthForC ontent</p> 26 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=103075">Bug 103075</a>: Rend erBox::computePercentageLogicalHeight should use containingBlockLogicalWidthForC ontent</p>
23 <p>This test checks that a percent logical height child in an orthogonal writing mode uses the multi-column's containing block column-width when resolving the l ogical height.</p> 27 <p>This test checks that a percent logical height child in an orthogonal writing mode uses the multi-column's containing block column-width when resolving the l ogical height.</p>
24 <div class="container"> 28 <div class="container">
25 <div class="percentLogicalHeight" data-expected-width="100" data-expected-he ight="100"></div> 29 <div class="percentLogicalHeight" data-expected-width="100" data-expected-he ight="100"></div>
26 </div> 30 </div>
27 </body> 31 </body>
28 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698