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

Side by Side Diff: LayoutTests/fast/multicol/min-height-greater-than-height.html

Issue 1322513003: Multicol: Min-height should have no effect if content is taller and height is auto. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use block instead of inline in test, so that we don't have to make assumptions about internal leadiā€¦ Created 5 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../resources/check-layout.js"></script>
3 <style>
4 .box { height:40px; background:blue; }
5 </style>
6 <p>If min-height is larger than height, the final height will be set according t o
7 min-height. Content should fill columns to their full height (the same as th e height of the
8 multicol container), since we request column-fill:auto, and height is non-au to, so we won't
9 balance.</p>
10 <p>Below there should be a blue square to the left of a hotpink square.</p>
11 <div id="test" style="position:relative; -webkit-columns:4; -webkit-column-gap:0 ; column-fill:auto; width:160px; height:40px; min-height:80px; background:hotpin k;">
12 <div data-offset-y="0" class="box"></div>
13 <div data-offset-y="40" class="box"></div>
14 <div data-offset-y="0" class="box"></div>
15 <div data-offset-y="40" class="box"></div>
16 </div>
17 <script>
18 checkLayout("#test");
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698