gecko/layout/base/crashtests/336291-1.html

19 lines
248 B
HTML
Raw Normal View History

2007-12-16 18:59:57 -08:00
<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>