448161-1.html (539B)
1 <html class="reftest-wait"> 2 <head> 3 <script type="text/javascript"> 4 5 function boom() 6 { 7 var r = document.createRange(); 8 r.setStart(document.body, 0); 9 r.setEnd(document.getElementById("g"), 0); 10 r.deleteContents(); 11 12 // Give spell-check a chance to run 13 setTimeout(function() { document.documentElement.className = ""; }, 14 50); 15 } 16 17 </script> 18 </head> 19 20 <body onload="boom();" contenteditable="true"><span><span contenteditable="true"><a href="http://www.mozilla.org/">5</a></span></span><span id="g"></span></body> 21 22 </html>