summaryrefslogtreecommitdiffstats
path: root/layout/tables/crashtests/1183896.html
blob: 3995ba09f3cb1c575a0ea74c5b22b8dd005fc529 (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>
<script>

function boom()
{
    row1.style.textAlign = "left";
}

</script>
</head>
<body onload="boom();">

    <table>
        <tbody>
            <tr id="row1"></tr>
            <tr>
                <td style="position: sticky;"></td>
            </tr>
        </tbody>
    </table>

</body>
</html>