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