-1:000000000000 | 0:7c816e4ed25d |
---|---|
1 <!DOCTYPE html> | |
2 <script> | |
3 | |
4 function boom() | |
5 { | |
6 var r = document.documentElement; | |
7 | |
8 while (r.firstChild) | |
9 r.removeChild(r.firstChild); | |
10 | |
11 var a = document.createTextNode("a"); | |
12 r.appendChild(a); | |
13 a.splitText(0); | |
14 a.splitText(0); | |
15 | |
16 document.documentElement.offsetHeight; | |
17 | |
18 r.appendChild(document.createTextNode("b")); | |
19 } | |
20 | |
21 window.addEventListener("load", boom, false); | |
22 | |
23 </script> |