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

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

Issue 288263002: [New Multicolumn] Rebalance properly when child content changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: More cleanup; avoid bool arguments. Get rid of layout() override. Created 6 years, 7 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 if (window.internals)
4 internals.settings.setRegionBasedColumnsEnabled(true);
5 onload = function() {
6 document.body.offsetTop; // trigger layout
7 document.getElementById('elm').style.height = '0';
8 }
9 </script>
10 <p>There should be a blue <em>square</em> below.</p>
Julien - ping for review 2014/05/23 09:07:54 With no red?
mstensho (USE GERRIT) 2014/05/23 11:46:09 Done.
11 <div style="-webkit-columns:3; columns:3; -webkit-column-gap:0; column-gap:0; wi dth:9em; line-height:9em; background:blue;">
12 <br>
13 <br>
14 <div id="elm" style="height:10em; background:red;"></div>
15 <br>
16 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698