remove-colgroup-from-anon-table.html (816B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>Removing the last col group from an anonymous table</title> 4 <link rel="help" href="https://drafts.csswg.org/css-tables/"> 5 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1907789"> 6 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez"> 7 <link rel="author" href="https://mozilla.org" title="Mozilla"> 8 <link rel="match" href="remove-caption-from-anon-table-ref.html"> 9 <table style="display: block"> 10 <colgroup> 11 <col></col> 12 </colgroup> 13 <tbody> 14 <tr> 15 <th>Header</th> 16 </tr> 17 <tr> 18 <td>Some long long long content</td> 19 </tr> 20 </tbody> 21 </table> 22 <script> 23 onload = function() { 24 let colgroup = document.querySelector("colgroup"); 25 colgroup.getBoundingClientRect(); 26 colgroup.remove(); 27 } 28 </script>