423514-1.xhtml (675B)
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait"> 2 <head> 3 <script type="text/javascript"> 4 5 window.addEventListener("load", boom, false); 6 7 function boom() 8 { 9 var d = document.getElementById("d"); 10 11 var c = document.createElement("td"); 12 c.setAttribute("rowspan", 2); 13 d.parentNode.insertBefore(c, d); 14 15 document.getElementById("d").focus(); 16 17 // Wait long enough for the caret to blink at least once. 18 setTimeout(done, 1200); 19 } 20 21 function done() 22 { 23 document.documentElement.removeAttribute("class"); 24 } 25 26 </script> 27 </head> 28 29 <!-- no <body>, intentionally --> 30 31 <div dir="rtl"></div> 32 33 <table><tr contenteditable="true" id="d"><td></td></tr></table> 34 35 </html>