summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/non-replaced-elements/tables/table-column-width.html
blob: 6358e14a3926b4f6b97d32832c45c0ef9237f24d (plain)
1
2
3
4
5
6
7
8
9
10
<!doctype html>
<link rel="match" href="table-column-width-ref.html">
<table style="display: block">
  <colgroup style="display: block">
    <col style="border: 1px solid green; display: block" width="0"></col>
  </colgroup>
</table>
<script>
  document.querySelector("col").append("Text");
</script>