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

Unified Diff: third_party/WebKit/LayoutTests/fast/multicol/forced-break-before-complex-margin-collapsing.html

Issue 1375673004: Keep block pagination struts after layout, and store them before any type of break. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: code review Created 5 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: third_party/WebKit/LayoutTests/fast/multicol/forced-break-before-complex-margin-collapsing.html
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/forced-break-before-complex-margin-collapsing.html b/third_party/WebKit/LayoutTests/fast/multicol/forced-break-before-complex-margin-collapsing.html
new file mode 100644
index 0000000000000000000000000000000000000000..e033dd22a11f2668c2f23d685c404f15b0ffa344
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/multicol/forced-break-before-complex-margin-collapsing.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<script src="../../resources/check-layout.js"></script>
+<p>Given a parent block with a forced break before, and with an empty collapse-through child
+ followed by a child with a top margin, check that the parent block still ends up at the exact
+ top of the next column. The collapse-through child prevents us from correctly estimating the
+ logical top of the parent initially.</p>
+<p>Below there should be a yellow box. Inside it there should be a bottom-left aligned blue box and
+ a top-center aligned green box.</p>
+<div id="test" style="position:relative; -webkit-columns:3; -webkit-column-gap:10px; column-fill:auto; width:620px; height:90px; line-height:20px; background:yellow;">
+ <br>
+ <br>
+ <br>
+ <div style="padding-top:4px; background:blue;" data-offset-x="0" data-offset-y="60" data-expected-height="110">
+ <div style="-webkit-column-break-before:always; background:red;" data-offset-x="210" data-offset-y="0" data-expected-height="80">
+ <div data-offset-x="210" data-offset-y="0" data-expected-height="0"></div>
+ <div style="margin-top:50px; background:green;" data-offset-x="210" data-offset-y="0" data-expected-height="80">
+ <br><br><br><br>
+ </div>
+ </div>
+ </div>
+</div>
+<script>
+ checkLayout("#test");
+</script>

Powered by Google App Engine
This is Rietveld 408576698