blob: 524be097f5efb0f4c2bbf6220df437bf35acccb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
var s = document.getElementById("s");
document.body.insertBefore(document.createTextNode("\n "), s);
document.body.offsetHeight;
s.appendChild(document.createElement("span"));
}
</script>
</head>
<body onload="boom();" style="column-count: 2; font-size: 1500px; white-space: pre-wrap;"><span id="s" style="display: inline-block"></span><div style="height: 100px;"></div></body>
</html>
|