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

Side by Side Diff: LayoutTests/fast/multicol/change-height.html

Issue 225463002: [New Multicolumn] Lay out flow thread again when multicol container height changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 8 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 | LayoutTests/fast/multicol/change-height-expected.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 <html>
3 <head>
4 <script>
5 if (window.internals)
6 internals.settings.setRegionBasedColumnsEnabled(true);
7 function test() {
8 var elm = document.getElementById('elm');
9 elm.offsetTop; // trigger layout
10 elm.style.height = '14em';
11 }
12 </script>
13 </head>
14 <body onload="test()">
15 <p>Below there should be <em>one</em> column with 7 lines.</p>
16 <div id="elm" style="-webkit-columns:3; columns:3; column-fill:auto; orp hans:1; widows:1; height:4em; line-height:2em;">
17 line<br>
18 line<br>
19 line<br>
20 line<br>
21 line<br>
22 line<br>
23 line<br>
24 </div>
25 </body>
26 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/change-height-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698