chromium/third_party/blink/web_tests/fast/inline-block/overflow-clip.html

<html>
<head></head>
<body>
<p>
This is a test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=8118">http://bugzilla.opendarwin.org/show_bug.cgi?id=8118</a>
REGRESSION (r13595): Inline block's clipped overflow increases table row height</i>.
</p>
<p>
You should see a green square and no red.
</p>
<table style="background: red;" cellpadding="0" cellspacing="0">
    <tr>
        <td>
            <div style="display: inline-block; overflow: hidden; height: 100px; width: 100px;">
                <div style="width: 100px; height: 200px; background: green;"></div>
            </div>
        </td>
    </tr>
</table>
</body>
</html>