7 var col
= document
.createElement("col");
8 col
.setAttribute('span', 2);
9 document
.body
.appendChild(col
);
10 col
.removeAttribute('span');
11 document
.body
.offsetHeight
;
12 document
.body
.removeChild(col
);
18 <body onload=
"boom();"></body>