4 var elm
= document
.getElementById('elm');
5 document
.body
.offsetTop
; // trigger layout
6 elm
.style
.display
= 'block';
10 .spanner { -webkit-column-span:all; }
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>