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

Side by Side Diff: LayoutTests/fast/multicol/dynamic/remove-and-insert-block-after-spanner.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 right after a spanner, then insertion of another b lock at the same position.</p>
16 <p>You should see two lines with the word "PASS" on a lime background below. Let ter spacing is expected to vary.</p>
17 <div style="-webkit-columns:4; -webkit-column-gap:0; width:4em; overflow:hidden; background:lime;">
18 <div class="spanner">PASS</div><div id="elm" style="background:red;">F<br>A< br>I<br>L</div><div id="elm2" style="display:none;">P<br>A<br>S<br>S</div></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698