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

Side by Side Diff: LayoutTests/fast/multicol/dynamic/remove-and-insert-block-between-spanners.html

Issue 869583002: [New Multicolumn] Support dynamic insertion and removal of multicol content. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: code review Created 5 years, 11 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 onload = function() {
4 document.body.offsetTop; // trigger layout
5 var elm = document.getElementById('elm');
6 elm.style.display = 'none';
7 document.body.offsetTop; // trigger layout
8 var elm2 = document.getElementById('elm2');
9 elm2.style.display = 'block';
10 }
11 </script>
12 <style>
13 .spanner { -webkit-column-span:all; }
14 </style>
15 <p>Test removal of of a block between two spanners, then insertion of another bl ock at the same position.</p>
16 <p>You should see three lines with the word "PASS" on a lime background below. L etter spacing is expected to vary.</p>
17 <div style="-webkit-columns:4; -webkit-column-gap:0; overflow:hidden; width:4em; background:lime;"><div class="spanner">PASS</div><div id="elm" style="backgroun d:red;">F<br>A<br>I<br>L</div><div id="elm2" style="display:none;">P<br>A<br>S<b r>S</div><div class="spanner">PASS</div></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698