blob: 2a66cd452a7a86283d28a287a1e2005f40bfc1f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<div style='container-type: size;'></div>
<table>
<tbody id='id_0'></tbody>
<th id='id_1'>
<tr>
<th></th>
</tr>
</th>
</table>
<script>
const tbody = document.getElementById('id_0')
tbody.getBoundingClientRect();
const theader = document.getElementById('id_1')
tbody.outerText = 'foo';
theader.setAttribute('rowspan', 100)
tbody.getBoundingClientRect();
</script>
|