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

Unified 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, 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-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/tall-content-in-inner-with-fixed-height-expected.html b/third_party/WebKit/LayoutTests/fast/multicol/tall-content-in-inner-with-fixed-height-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..5216023177f64f24d52c61570355cc1b3215bc27
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/multicol/tall-content-in-inner-with-fixed-height-expected.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<style>
+ .square { float:left; width:60px; height:60px; }
+ .blue { background:blue; }
+ .yellow { background:yellow; }
+ .hotpink { background:hotpink; }
+ .cyan { background:cyan; }
+</style>
+<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;">
+ <div class="blue square"></div>
+ <div class="yellow square"></div>
+ <div class="blue square"></div>
+ <div class="hotpink square"></div>
+ <div class="yellow square"></div>
+ <div class="hotpink square"></div>
+ <div class="cyan square"></div>
+ <div class="hotpink square"></div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698