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/newmulticol/balance10.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/balance10.html
diff --git a/LayoutTests/fast/multicol/newmulticol/balance10.html b/LayoutTests/fast/multicol/newmulticol/balance10.html
new file mode 100644
index 0000000000000000000000000000000000000000..566cc64e51faf519e758d276098c1614074a6f3e
--- /dev/null
+++ b/LayoutTests/fast/multicol/newmulticol/balance10.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>auto-height multicol</title>
+ <script src="../../js/resources/js-test-pre.js"></script>
+ <script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ if (window.internals)
+ internals.settings.setRegionBasedColumnsEnabled(true);
+ </script>
+ </head>
+ <body>
+ <p>There should be two identical boxes below.</p>
+ <div id="mc" style="-webkit-columns:3; columns:3; orphans:1; widows:1; line-height:50px; margin:1em; float:left; width:18em; color:olive; background:olive;">
+ <span>line</span><br>
+ <span>line</span><br>
+ <span>line</span><br>
+ <span>line</span><br>
+ <span>line</span><br>
+ <span>line</span><br>
+ <span>line</span><br>
+ <span style="line-height:150px;">line</span><br>
+ <span>line</span><br>
+ <span>line</span><br>
+ </div>
+ <div id="ref" style="-webkit-columns:3; columns:3; orphans:1; widows:1; line-height:50px; margin:1em; float:left; width:18em; height:250px; color:olive; background:olive;">
+ <span>line</span><br>
+ <span>line</span><br>
+ <span>line</span><br>
+ <span>line</span><br>
+ <span>line</span><br>
+ <span>line</span><br>
+ <span>line</span><br>
+ <span style="line-height:150px;">line</span><br>
+ <span>line</span><br>
+ <span>line</span><br>
+ </div>
+ <script>
+ shouldBe("mc.offsetHeight", "ref.offsetHeight");
+ </script>
+ <script src="../../js/resources/js-test-post.js"></script>
+ </body>
+</html>
« no previous file with comments | « LayoutTests/fast/multicol/nested-columns.html ('k') | LayoutTests/fast/multicol/newmulticol/balance10-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698