Try this;
<html>
<head>
<title></title>
<script type="text/javascript">
function addToList(text) {
var list = document.getElementById('list');
list.innerHTML += '<li>'+text+'</li>';
}
</script>
</head>
<body>
<div contentEditable="true" id="editBox" style="width: 300px; height: 100px; border:1px solid #ff0000;"> </div>
<ol id="list"></ol>
<button title="Ordered List" unselectable="on" onclick="addToList(document.getElementById('editBox').innerHTML)">Push me</button>
</body>
</html>
I would avoid using execCommand and InsertOrderedList like the plague.
The above should give reliable results in most browsers. I've tested the above in FF3 and IE6.
