Oreon-Lime-R2/mingw-wine-gecko/wine-gecko-2.47.4-src/wine-gecko-2.47.4/layout/reftests/table-anonymous-boxes/371054-1.html

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