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

Unified Diff: LayoutTests/fast/multicol/newmulticol/fixed-height-fill-auto.html

Issue 25687002: Add support for the column-fill property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Put changes to problematic files (for the bots) back in. Created 7 years, 2 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/newmulticol/fixed-height-fill-auto.html
diff --git a/LayoutTests/fast/multicol/newmulticol/fixed-height-fill-auto.html b/LayoutTests/fast/multicol/newmulticol/fixed-height-fill-auto.html
new file mode 100644
index 0000000000000000000000000000000000000000..cb3772abf56af960095d2228613effc2cf45c6e2
--- /dev/null
+++ b/LayoutTests/fast/multicol/newmulticol/fixed-height-fill-auto.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>fixed-height multicol, no balancing</title>
+ <script>
+ if (window.internals)
+ internals.settings.setRegionBasedColumnsEnabled(true);
+ </script>
+ </head>
+ <body style="color:black; background:white;">
+ <p>Below there should be a left-aligned blue box.</p>
+ <div style="-webkit-columns:3; columns:3; column-fill:auto; height:10em; orphans:1; widows:1;">
+ <div style="color:white;">line</div>
+ <div style="color:white;">line</div>
+ <div style="width:5em; color:blue; background:blue;">line</div>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698