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

Unified Diff: third_party/WebKit/LayoutTests/fast/multicol/nested-short-first-row-unsplittable-block.html

Issue 1472053002: Jump to the next outer column when an inner column is too short. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: code review Created 5 years, 1 month 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: third_party/WebKit/LayoutTests/fast/multicol/nested-short-first-row-unsplittable-block.html
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/nested-short-first-row-unsplittable-block.html b/third_party/WebKit/LayoutTests/fast/multicol/nested-short-first-row-unsplittable-block.html
new file mode 100644
index 0000000000000000000000000000000000000000..6ab254090554caf1593a13473fccd860b411655d
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/multicol/nested-short-first-row-unsplittable-block.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<script src="../../resources/check-layout.js"></script>
+<p>The word "YO" should be seen below.</p>
+<div id="outer" style="position:relative; -webkit-column-count:3; -webkit-column-gap:0; column-fill:auto; font-size:16px; width:9em; height:5em; text-align:right;">
+ <div data-offset-x="0" data-offset-y="0">Y</div>
+ <div style="-webkit-column-count:3; -webkit-column-gap:0;">
+ <div data-offset-x="48" data-offset-y="0" style="-webkit-column-break-inside:avoid; height:4em;">O</div>
+ </div>
+</div>
+<script>
+ checkLayout("#outer");
+</script>

Powered by Google App Engine
This is Rietveld 408576698