OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <p>Test that a scrollable container isn't split across multiple columns.</p> |
| 3 <p>There should be three columns below. The first one should contain "line1". Th
e second one should |
| 4 contain "line2", "line3", "line4" and a vertical scrollbar. The third one sh
ould contain |
| 5 "line5". No red should be seen</p> |
| 6 <div style="width:32em; line-height:2em;"> |
| 7 <div style="float:left; width:11em;"> |
| 8 line1<br> |
| 9 </div> |
| 10 <div style="float:left; width:11em;"> |
| 11 <div style="overflow:auto; width:10em; height:6em;"> |
| 12 line2<br> |
| 13 line3<br> |
| 14 line4<br> |
| 15 <span style="color:red;">FAIL</span> |
| 16 </div> |
| 17 </div> |
| 18 <div style="float:left;"> |
| 19 line5<br> |
| 20 </div> |
| 21 </div> |
OLD | NEW |