Well it appears that the problem is triggered by certain behaviours in relation to elements being appended to the dom.
The following html/js will flag an operation aborted error: (tested in IE7 beta 3)
<table>
<tr>
<td>
<script type="text/javascript">
var d = document.createElement('div');
document.body.appendChild(d);
</script>
</td>
</tr>
</table
An example of this can be found
hereThe following code html/js wil not: (again in IE7 b3)
<div>
<script type="text/javascript">
var d = document.createElement('div');
document.body.appendChild(d);
</script>
</div>
An example of this can be found here
I hope there is an easy work around for this.