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

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

Issue 2725943003: Respect constrained height on nested multicol containers. (Closed)
Patch Set: Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/multicol/tall-content-in-inner-with-fixed-height.html
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/tall-content-in-inner-with-fixed-height.html b/third_party/WebKit/LayoutTests/fast/multicol/tall-content-in-inner-with-fixed-height.html
new file mode 100644
index 0000000000000000000000000000000000000000..4dc08a054a54ab40438ee344be046c1cf8205929
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/multicol/tall-content-in-inner-with-fixed-height.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<p>There should be 8 squares below, from left to right, with the following colors:</p>
+<p>Blue, yellow, blue, hotpink, yellow, hotpink, cyan, hotpink.</p>
+<div style="width:480px; background:cyan;">
+ <div style="columns:2; column-fill:auto; column-gap:0; width:360px; height:60px;">
+ <div style="columns:2; column-gap:60px; height:120px; background:yellow;">
+ <div style="height:120px; background:blue;"></div>
+ <div style="height:180px; background:hotpink;"></div>
+ </div>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698