604314-1.html (247B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 var sel = window.getSelection(''); 9 sel.collapse(document.createTextNode("x"), 0); 10 sel.extend(document.documentElement, 0); 11 } 12 13 </script> 14 </head> 15 <body onload="boom();"></body> 16 </html>