Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/remove-colgroup-from-anon-table.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>Removing the last col group from an anonymous table</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<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>