682463.html (247B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 var j = document.createTextNode("j"); 9 var r = document.createRange(); 10 r.setEnd(j, 1); 11 j.splitText(0); 12 r.setEnd(j, 0); 13 } 14 15 </script> 16 </head> 17 18 <body onload="boom();"></body> 19 20 </html>