Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / overflowScroll-expected.html
blob5a3f4d4e17422bdaa625c8928041e1f08bd48d3d
1 <!DOCTYPE html>
2 <style>
3 .scrollingElement
5 width: 100px;
6 height: 100px;
7 background-color: green;
9 table
11 margin-bottom: 35px;
13 </style>
14 <table class="scrollingElement" cellspacing=0>
15 <tbody>
16 <tr><td> text text text text</td></tr>
17 </tbody>
18 </table>
19 <table cellspacing=0>
20 <tbody class="scrollingElement">
21 <tr><td> text text text text</td></tr>
22 </tbody>
23 </table>
24 <table cellspacing=0>
25 <tbody>
26 <tr class="scrollingElement"><td>text text text text</td></tr>
27 </tbody>
28 </table>
29 <p> crbug.com/368699: Tables, table rows and table sections don't have scrollbars when they have overflow:scroll. </p>