701504.html (469B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 document.documentElement.offsetHeight; 9 10 var x = document.getElementById('x'); 11 x.removeChild(x.childNodes[1]); 12 13 document.documentElement.offsetHeight; 14 } 15 16 </script> 17 </head> 18 <body onload="boom();"> 19 20 <div style="column-count: 2;"><span style="unicode-bidi: isolate;" id="x"><span style="direction: rtl;"></span> <span style="unicode-bidi: isolate; white-space: pre;"> 21 x</span></span></div> 22 23 </body> 24 </html>