Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<head>
<script type="text/javascript" >
function boom()
{
var a = document.getElementById("a");
document.body.removeChild(a);
document.body.offsetHeight;
document.body.appendChild(a);
}
</script>
</head>
<body style="column-count: 3;" onload="boom();">1<div style="height: 1em;"></div><div id="a">2<select style="float: right;"></select></div></body>
</html>