|
<html>
|
|
<head>
|
|
<script type="application/javascript">
|
|
function do_test() {
|
|
document.execCommand("insertUnorderedList", false);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="do_test()">
|
|
<table>
|
|
<th contenteditable="true">
|
|
<ol contenteditable="false">
|
|
</th>
|
|
</table>
|
|
</body>
|
|
</html>
|