Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / overflow-unsplittable.html
blob7f64cdf52c023d1778b288381767eb50b2283b67
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". The second one should
4 contain "line2", "line3", "line4" and a vertical scrollbar. The third one should contain
5 "line5". No red should be seen</p>
6 <div style="-webkit-columns:3; -webkit-column-gap:1em; width:32em; line-height:2em;">
7 line1<br>
8 <div style="overflow:auto; height:6em;">
9 line2<br>
10 line3<br>
11 line4<br>
12 <span style="color:red;">FAIL</span>
13 </div>
14 line5<br>
15 </div>