summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/overflowScroll-expected.html
blob: 5a3f4d4e17422bdaa625c8928041e1f08bd48d3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<style>
.scrollingElement
{
    width: 100px;
    height: 100px;
    background-color: green;
}
table
{
    margin-bottom: 35px;
}
</style>
<table class="scrollingElement" cellspacing=0>
    <tbody>
        <tr><td> text text text text</td></tr>
    </tbody>
</table>
<table cellspacing=0>
    <tbody class="scrollingElement">
        <tr><td> text text text text</td></tr>
    </tbody>
</table>
<table cellspacing=0>
    <tbody>
        <tr class="scrollingElement"><td>text text text text</td></tr>
    </tbody>
</table>
<p> crbug.com/368699: Tables, table rows and table sections don't have scrollbars when they have overflow:scroll. </p>