chromium/third_party/blink/web_tests/fast/table/overflowScroll-expected.html

<!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>