475132-1.xhtml (579B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <script type="text/javascript"> 4 function onLoad() { 5 document.querySelector("td").contentEditable = "true"; 6 getSelection().collapse( 7 document.querySelector("td"), 8 document.querySelector("td").childNodes.length 9 ); 10 document.querySelector("td").focus(); 11 document.documentElement.contentEditable = "true"; 12 document.documentElement.focus(); 13 document.execCommand("indent"); 14 document.execCommand("insertParagraph"); 15 } 16 </script> 17 </head> 18 19 <body onload="onLoad();" contenteditable="false"><td></td></body> 20 21 </html>