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

Side by Side Diff: third_party/WebKit/LayoutTests/fragmentation/first-child-large-top-margin.html

Issue 2542723002: Margins that start at fragmentainer boundaries should be collapsed away. (Closed)
Patch Set: Back out an unnecessary and potentially harmful change. Created 4 years 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fragmentation/margin-bottom-at-top-of-fragmentainer.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <p>There should be a blue square below.</p>
3 <div style="position:relative; columns:2; column-gap:0; column-fill:auto; width: 200px; height:100px;">
4 <div id="elm" style="margin-top:150px; height:100px; background:blue;"></div >
5 </div>
6 <script src="../resources/testharness.js"></script>
7 <script src="../resources/testharnessreport.js"></script>
8 <script>
9 test(() => {
10 var elm = document.getElementById("elm");
11 assert_equals(elm.offsetLeft, 100);
12 assert_equals(elm.offsetTop, 0);
13 }, "Margins should collapse with fragmentainer boundaries");
14 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fragmentation/margin-bottom-at-top-of-fragmentainer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698