blob: dc531fba57eb1b8c8770381649ad5a03c8238c64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<body>
<table contenteditable="true"></table>
</body>
<script>
window.onload = function() {
document.execCommand("useCSS", false, false);
document.designMode = 'on';
document.execCommand("insertunorderedlist", false);
document.execCommand("justifyfull", false);
};
</script>
|