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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/tall-content-in-inner-with-fixed-height-expected.html

Issue 2725943003: Respect constrained height on nested multicol containers. (Closed)
Patch Set: Created 3 years, 9 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
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .square { float:left; width:60px; height:60px; }
4 .blue { background:blue; }
5 .yellow { background:yellow; }
6 .hotpink { background:hotpink; }
7 .cyan { background:cyan; }
8 </style>
9 <p>There should be 8 squares below, from left to right, with the following color s:</p>
10 <p>Blue, yellow, blue, hotpink, yellow, hotpink, cyan, hotpink.</p>
11 <div style="width:480px;">
12 <div class="blue square"></div>
13 <div class="yellow square"></div>
14 <div class="blue square"></div>
15 <div class="hotpink square"></div>
16 <div class="yellow square"></div>
17 <div class="hotpink square"></div>
18 <div class="cyan square"></div>
19 <div class="hotpink square"></div>
20 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698