Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / dynamic / insert-block-before-spanner-before-content.html
blob6e3d39c785e7367cb1bd547692a53e076d5eb032
1 <!DOCTYPE html>
2 <script>
3 onload = function() {
4 var elm = document.getElementById('elm');
5 document.body.offsetTop; // trigger layout
6 elm.style.display = 'block';
8 </script>
9 <style>
10 .spanner { -webkit-column-span:all; }
11 </style>
12 <p>Test insertion of column content right in front of a spanner that is followed by more column content.</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 <div id="elm" style="display:none;">P<br>A<br>S<br>S</div>
16 <div class="spanner">PASS</div>
17 P<br>A<br>S<br>S
18 </div>