1156588.html (499B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <script> 6 7 function boom() 8 { 9 document.documentElement.offsetHeight; 10 document.getElementById("x").style.content = "'x'"; 11 document.documentElement.offsetHeight; 12 document.getElementById("s").remove(); 13 document.documentElement.offsetHeight; 14 } 15 16 </script> 17 </head> 18 19 <body onload="boom();"> 20 21 <div style="display: inline-grid; white-space: pre;"><div id="x"><span> 22 <span> 23 </span><span id="s"></span></span></div></div> 24 25 </body> 26 </html>