mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-12-25 06:29:21 +00: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>
|