servo/tests/ref/table_containing_block_a.html

22 lines
422 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.rel {
position: relative;
}
.abs {
position:absolute;
}
</style>
</head>
<body>
<table class="rel">
<tbody>
<tr class="abs">
<td>Don't crash!</td>
</tr>
</tbody>
</table>
</body>
</html>