1402469.html (435B)
1 <html> 2 <head> 3 <script> 4 function onLoad() { 5 // For emulating the traditional behavior, collapse Selection to end of the 6 // text node at end of the <body>. 7 getSelection().collapse( 8 document.body.lastChild, 9 document.body.lastChild.length 10 ); 11 document.execCommand("insertUnorderedList"); 12 } 13 </script> 14 </head> 15 <body onload="onLoad()"> 16 <table> 17 <th contenteditable> 18 <ol contenteditable> 19 </th> 20 </table> 21 </body> 22 </html>