Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script> | |
| 3 onload = function() { | |
| 4 document.getElementById('target').scrollTop = 1000; | |
| 5 } | |
| 6 </script> | |
| 7 <div style="position:fixed;"> | |
| 8 <p>Test that overflow on a spanner is propagated to its scrollable multicol container.</p> | |
| 9 <p>You should see the word 'PASS' below.</p> | |
| 10 </div> | |
| 11 <div id="target" style="overflow:scroll; line-height:2em; height:4em; -webkit-co lumns:4;"> | |
| 12 <div style="-webkit-column-span:all; height:2em;"> | |
| 13 <br><br><br><br>PASS | |
| 14 </div> | |
| 15 </div> | |
| OLD | NEW |