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

Side by Side Diff: LayoutTests/fast/multicol/content-change-same-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: code review 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 if (window.testRunner)
6 testRunner.dumpAsText();
7 onload = function() {
8 document.body.offsetTop;
9 document.getElementById('elm').innerHTML= "x";
10 document.body.offsetTop;
11 document.getElementById('elm').innerHTML= "PASS";
12 }
13 </script>
14 <p>No assertions should fail.</p>
15 <div style="-webkit-columns:2; columns:2;">
16 <span id="elm">FAIL</span>
17 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698