chromium/third_party/blink/web_tests/fast/table/correct-baseline-after-style-change-expected.html

<!DOCTYPE html>
<html>
    <head>
        <style>
            td {
                border: 1px solid gray;
                vertical-align: baseline;
            }
            input {
                visibility: hidden;
            }
        </style>
    </head>
    <body>
        <p>webkit.org/b/115432: There should be no extra space between the top of the text and the top of the table.</p>
        <form>
            <table>
                <tr>
                    <td>Text</td>
                    <td>Text<br>Text<br>Text</td>
                </tr>
            </table>
        </form>
    </body>
</html>