Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / dynamic / remove-block-from-content-after-spanner.html
blobbeffed8b91bccd195b5ef1293854816085b09319
1 <!DOCTYPE html>
2 <script>
3 onload = function() {
4 var elm = document.getElementById('elm');
5 elm.offsetTop; // trigger layout
6 elm.style.display = 'none';
8 </script>
9 <style>
10 .spanner { -webkit-column-span:all; }
11 </style>
12 <p>Test removal of some of the column content that follows a spanner.</p>
13 <p>There should be three lines below with the word "PASS". Letter spacing is expected to vary</p>
14 <div style="-webkit-columns:4; -webkit-column-gap:0; overflow:hidden; width:4em;">
15 <div class="spanner">PASS</div>
16 P<br>P<br>A<br>
17 <div id="elm">FAIL</div>
18 A<br>S<br>S<br>S<br>S
19 </div>