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

Unified Diff: LayoutTests/fast/multicol/nested-fixed-height-with-struts.html

Issue 1292163002: Initial support for nested multicol layout. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: code review Created 5 years, 4 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: LayoutTests/fast/multicol/nested-fixed-height-with-struts.html
diff --git a/LayoutTests/fast/multicol/nested-fixed-height-with-struts.html b/LayoutTests/fast/multicol/nested-fixed-height-with-struts.html
new file mode 100644
index 0000000000000000000000000000000000000000..978cb615b91fcb7a57ac41a0f49272ff30a3d7af
--- /dev/null
+++ b/LayoutTests/fast/multicol/nested-fixed-height-with-struts.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<style>
+ .box { display:inline-block; width:1em; height:4em; background:blue; }
+</style>
+<p>There should be a blue square below.</p>
+<div style="-webkit-columns:2; -webkit-column-gap:0; column-fill:auto; line-height:5em; width:4em; height:12.5em;">
+ <br>
+ <div style="-webkit-columns:2; -webkit-column-gap:0; column-fill:auto; height:25em;">
+ <div class="box"></div><br>
+ <div class="box"></div><br>
+ <br>
+ <div class="box"></div><br>
+ <br>
+ <div class="box"></div><br>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698