summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/336291-1.html
blob: cbcb6c0c9ad037af9cb558d0c0d4743273b78d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<head>
<script>
function z()
{
  document.getElementById("x").style.display = "table";
  document.body.style.display = "table-row";
}
</script>
</head>

<body onload="z()">

<p style="display: table-row"></p>

<p id="x"></p>

</body>
</html>