blob: 28f820d99bda2c1e63cca60f9a6a8e78548eddf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html>
<head>
<script>
function expStr(s, n)
{
for (var i = 0; i < n; ++i)
s += s;
return s;
}
function boom()
{
var s = document.getElementById("s")
var t = document.createTextNode(expStr("x ", 15));
s.appendChild(t);
document.documentElement.offsetHeight;
s.removeChild(t);
}
</script>
</head>
<body onload="boom();"><div style="width: 1px"><span id="s"></span></div></body>
</html>
|