Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<meta charset="utf-8">
<title>Removing the last col group from an anonymous table</title>
<link rel="help" href="https://drafts.csswg.org/css-tables/">
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="author" href="https://mozilla.org" title="Mozilla">
<link rel="match" href="remove-caption-from-anon-table-ref.html">
<table style="display: block">
<colgroup>
<col></col>
</colgroup>
<tbody>
<tr>
<th>Header</th>
</tr>
<tr>
<td>Some long long long content</td>
</tr>
</tbody>
</table>
<script>
onload = function() {
let colgroup = document.querySelector("colgroup");
colgroup.getBoundingClientRect();
colgroup.remove();
}
</script>