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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/dynamic/bottom-aligned-abspos-change-column-height.html

Issue 1415623002: Need to reposition an out-of-flow object *before* re-paginating it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/multicol/dynamic/bottom-aligned-abspos-change-column-height-expected.txt » ('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 <script src="../../../resources/check-layout.js"></script>
3 <p>A bottom-aligned absolutely positioned descendant needs to be repositioned be fore being
4 repaginated when its containing block gets a new height.</p>
5 <p>The word "PAPAYA" should be seen in the first column below.</p>
6 <div id="multicol" style="position:relative; -webkit-columns:2; column-fill:auto ; width:20em; height:200px; color:papayawhip; background:papayawhip;">
7 <div style="position:relative; height:100%;">
8 <div data-offset-y="140" style="position:absolute; bottom:0; height:50px ; line-height:50px; background:black;">
9 <div data-offset-y="0">PAPAYA</div>
10 </div>
11 </div>
12 </div>
13 <script>
14 document.body.offsetTop;
15 document.getElementById("multicol").style.height = "190px";
16 checkLayout("#multicol");
17 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/multicol/dynamic/bottom-aligned-abspos-change-column-height-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698