summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/nested-tables-with-div-offset.html
blob: 97311032844ebf1bf90a56c0c1b3e786fb44967d (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
30
31
32
33
34
<script src="../../resources/check-layout.js"></script>
<body onload="checkLayout('.quirky-box');">
<table height="100%">
    <tbody>
        <tr>
            <td>
                <table class="quirky-box" height="100%" data-offset-y="1">
                    <tbody>
                        <tr>
                            <td style="height: 100px;"></td>
                        </tr>
                        <tr>
                            <td>
                                <div style="height:350px;"></div>
                            </td>
                            <td style="height: 100%; vertical-align: top; width: 100%;">
                                <div>
                                    <table height="100%">
                                        <tbody>
                                            <tr>
                                            <td height="100%" valign="top"></td>
                                            </tr>
                                        </tbody>
                                    </table>
                                </div>
                            </td>
                        </tr>
                    </tbody>
                </table>
            </td>
        </tr>
    </tbody>
</table>
</body>