1274050.html (479B)
1 <body> 2 <table contenteditable></table> 3 </body> 4 <script> 5 window.onload = function() { 6 // For emulating the traditional behavior, collapse Selection to end of the 7 // text node at end of the <body>. 8 getSelection().collapse( 9 document.body.lastChild, 10 document.body.lastChild.length 11 ); 12 document.execCommand("styleWithCSS", false, false); 13 document.designMode = "on"; 14 document.execCommand("insertUnorderedList"); 15 document.execCommand("justifyFull"); 16 }; 17 </script>