mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
307 B
HTML
21 lines
307 B
HTML
<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>
|