blob: 3d829f55181359e6db54d6c2d7f77d21ffbecd83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE html>
<html>
<head>
<style>
* {
max-width: fit-content;
}
</style>
<script>
window.addEventListener('load', () => {
const col = document.getElementById('id_0')
const table = document.getElementById('id_1')
const colgroup_1 = document.createElement('colgroup')
const colgroup_2 = document.createElement('colgroup')
colgroup_2.span = 174
table.appendChild(colgroup_1)
table.appendChild(col)
table.appendChild(colgroup_2)
document.documentElement.getAnimations({ })
colgroup_1.setAttribute('span', 190)
colgroup_2.setAttribute('span', 0)
})
</script>
</head>
<table id='id_1'>
<col id='id_0'>
</table>
</html>
|