tenfourfox/layout/reftests/table-anonymous-boxes/371054-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

21 lines
462 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function doTest() {
document.getElementById("t").style.display = "table-row";
}
</script>
</head>
<body onload="doTest()">
<table style="border-collapse: collapse">
<tr style="display: block; border: 5px solid">
<td>LongLongLong</td>
</tr>
<tr style="display: none; border: 5px solid" id="t">
<td>Short</td>
</tr>
</table>
</body>
</html>