HtmlImporter handles <span> incorrectly
I have got a simple test case as following:
<html>
<body>
<p>
<span>
<em>this is emphsize</em>
<a href="http://cnn.com">link to cnn</a>
and one line of text
</span>
</p>
</body>
</html>
Seems TextConverter.importToFlow() can't handle the nested span tag correctly, all text in <em> and <a> are removed, just the last line ("and one line of text") survived.
The same html will display alright in both safari and firefox (on mac) which made me think this is probably a importer bug ? looks like TextFlow doesn't like nested stuff within a single span tag ?
any idea ? thanks.
