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

Unified Diff: LayoutTests/fast/multicol/nested-outer-fixed-height.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-outer-fixed-height.html
diff --git a/LayoutTests/fast/multicol/nested-outer-fixed-height.html b/LayoutTests/fast/multicol/nested-outer-fixed-height.html
new file mode 100644
index 0000000000000000000000000000000000000000..32ade687b7a0a05e5eaab744568d38e915374449
--- /dev/null
+++ b/LayoutTests/fast/multicol/nested-outer-fixed-height.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<style>
+ .mc { -webkit-columns:2; -webkit-column-gap:0; }
+</style>
+<p>Test that we establish two column rows for the contents of an inner multicol container that
+ crosses a column boundary in the outer multicol container.</p>
+<p>The word "PASS" should be seen below, with large letter spacing, and no red.</p>
+<div class="mc" style="column-fill:auto; width:4em; height:2em; line-height:2em; background:red;">
+ <div class="mc" style="background:white;">
+ P<br>
+ A<br>
+ S<br>
+ S<br>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698