OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="resources/text-based-repaint.js"></script> |
| 3 <script> |
| 4 if (window.internals) { |
| 5 internals.settings.setRegionBasedColumnsEnabled(true); |
| 6 onload = runRepaintTest; |
| 7 } else { |
| 8 onclick = repaintTest; |
| 9 } |
| 10 function repaintTest() { |
| 11 var target = document.getElementById('target'); |
| 12 target.style.visibility = 'visible'; |
| 13 } |
| 14 </script> |
| 15 <p>A green rectangle should be seen below (if tested manually, you need to click
first).</p> |
| 16 <div style="-webkit-columns:4; -webkit-column-gap:10px; column-fill:auto; width:
630px; height:40px; font:20px/1 ahem; color:green;"> |
| 17 <br> |
| 18 <br> |
| 19 <br> |
| 20 <br> |
| 21 <br> |
| 22 <br> |
| 23 <!-- This absolutely positioned box is not part of the flow thread, since th
e nearest |
| 24 non-statically positioned box is further up than that. --> |
| 25 <div id="target" style="position:absolute; left:0; bottom:0; visibility:hidd
en;">PASS</div> |
| 26 </div> |
OLD | NEW |