summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/cell-overflow-simplified-layout-expected.html
blob: 0f2202b824123bfebac7f7bf9111b82ff1166a0f (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
<!DOCTYPE html>
<html>
    <head>
        <style>
            .rel {
                position: relative;
                width: 150px;
            }
            .pos {
                background-color: cyan;
                position: absolute;
                width: 100%;
                top: 0;
                left: 0;
                height: 800px;
            }
        </style>
    </head>
    <body>
        <p>
        Bug webkit.org/b/111977 : We should compute overflow from cells during simplified layout. The page should have a vertical scrollbar.
        </p>
            <table>
                <tr>
                    <td>
                        <div class="rel">
                            <div class="pos"></div>
                        </div>
                    </td>
                </tr>
            </table>
    </body>
</html>