summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/insert-cell-before-form.html
blob: eb1410b68b9d032f5e225189bd2947fe0ea913ce (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
<p>
    Test for <i><a href="rdar://problem/5615307">rdar://problem/5615307</a> Repro crash in WebKit!WebCore::RenderContainer::destroyLeftoverChildren</i>.
</p>
<p>
    There should be a line of green text below.
</p>
<table style="color: red;">
    <tbody>
        <tr>
            <td>
                <table>
                    <tbody>
                        <tr style="color: green;">
                            <td id="target" style="display: none;">
                                This should be green.
                            </td>
                            <form>
                            </form>
                        </tr>
                    </tbody>
                </table>
            </td>
        </tr>
    </tbody>
</table>
<script>
    function test()
    {
        document.getElementById("target").style.display = "";
    }

    test();
</script>