Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / dynamic / remove-block-from-content-before-spanner.html
blob01cf104f820b015e0942e18cc3e232bdc219b4bf
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 precedes 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; width:4em;">
15 P<br>P<br>A<br>
16 <div id="elm">FAIL</div>
17 A<br>S<br>S<br>S<br>S
18 <div class="spanner">PASS</div>
19 </div>