summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/correct-baseline-after-style-change-expected.html
blob: f3be4e8da66dc6d9b955eb9fbcc51ec98fe2a210 (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
<!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>