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-caption-from-anon-table.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>Removing the last caption 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">
<caption>Some caption</caption>
<tbody>
<tr>
<th>Header</th>
</tr>
<tr>
<td>Some long long long content</td>
</tr>
</tbody>
</table>
<script>
onload = function() {
let caption = document.querySelector("caption");
caption.getBoundingClientRect();
caption.remove();
}
</script>