jruderman%hmc.edu ccc41daac0 Add crashtest
git-svn-id: svn://10.0.0.236/trunk@241503 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-17 03:08:21 +00:00

19 lines
248 B
HTML

<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>