uso IE7 e FF3
prova questo ...
</html>
<head></head>
<script>
function show_html(){
alert(document.getElementById('campo').innerHTML);
}
function show_text(){
alert(document.getElementById('campo').textContent );
}
</script>
<body>
<div id="campo">
<font face="verdana">ciao</font>
<font face="verdana">come va?</font>
</div>
<input type="button" value="clicca e vedi l'HTML " onclick="show_html()">
<input type="button" value="clicca e vedi il testo " onclick="show_text()">
</body>
</html>
si mi necessita che siano uguali