blob: 23702775c6761c22a0c96b2883f4cec553dedc41 [file] [log] [blame]
<!DOCTYPE html>
<p>Test that a scrollable container isn't split across multiple columns.</p>
<p>There should be three columns below. The first one should contain "LINE1". The second one should
contain "LINE2", "LINE3", "LINE4" and a vertical scrollbar. The third one should contain
"LINE5". No red should be seen</p>
<div style="width:32em; LINE-height:2em;">
<div style="float:left; width:11em;">
LINE1<br>
</div>
<div style="float:left; width:11em;">
<div style="overflow:auto; width:10em; height:6em;">
LINE2<br>
LINE3<br>
LINE4<br>
<span style="color:red;">FAIL</span>
</div>
</div>
<div style="float:left;">
LINE5<br>
</div>
</div>