OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script> |
| 3 if (window.internals) |
| 4 internals.settings.setRegionBasedColumnsEnabled(true); |
| 5 onload = function() { |
| 6 var elm = document.getElementById('elm'); |
| 7 document.body.offsetTop; // trigger layout |
| 8 elm.style.display = 'block'; |
| 9 } |
| 10 </script> |
| 11 <p>There should be two lines below with the word "PASS". Letter spacing is expec
ted to |
| 12 vary. The first word should be in <span style="color:blue;">blue</span>. The sec
ond one |
| 13 in <span style="color:olive;">olive</span>.</p> |
| 14 <div style="float:left; overflow:hidden;"> |
| 15 <div style="-webkit-columns:5; columns:5; column-gap:0; -webkit-column-gap:0
; orphans:1; widows:1; color:olive;"> |
| 16 <div id="elm" style="display:none; -webkit-column-span:all; column-span:
all; color:blue;">PASS</div> |
| 17 P<br>A<br>S<br>S |
| 18 </div> |
| 19 </div> |
OLD | NEW |