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

Unified Diff: LayoutTests/fast/multicol/newmulticol/break-after.html

Issue 143383002: Region based multicol: support explicit column breaks (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Code review. Created 6 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
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/newmulticol/break-after-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/multicol/newmulticol/break-after.html
diff --git a/LayoutTests/fast/multicol/newmulticol/break-after.html b/LayoutTests/fast/multicol/newmulticol/break-after.html
new file mode 100644
index 0000000000000000000000000000000000000000..36dd320ac860ac6b870502ee471c7e78e3c9af20
--- /dev/null
+++ b/LayoutTests/fast/multicol/newmulticol/break-after.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>auto-height multicol with break</title>
+ <script>
+ if (window.internals)
+ internals.settings.setRegionBasedColumnsEnabled(true);
+ </script>
+ <style>
+ .mc > div { padding:0 0.5em; }
+ </style>
+ </head>
+ <body style="min-width:40em;">
+ <div class="mc" style="-webkit-columns:3; -webkit-column-gap:1em; columns:3; column-gap:1em; orphans:1; widows:1; width:32em; background:olive;">
+ <div style="-webkit-column-break-after:always; break-after:column;">
+ first column<br>
+ first column<br>
+ first column<br>
+ first column<br>
+ second column<br>
+ second column<br>
+ second column<br>
+ </div>
+ <div>
+ third column<br>
+ </div>
+ </div>
+ </body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/newmulticol/break-after-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698