blob: 5f956d2ee30ab28d9b40fd2b074b252e5c39059e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html>
<head>
<script>
function boom()
{
var col = document.createElement("col");
col.setAttribute('span', 2);
document.body.appendChild(col);
col.removeAttribute('span');
document.body.offsetHeight;
document.body.removeChild(col);
}
</script>
</head>
<body onload="boom();"></body>
</html>
|