id attributes being dropped by TextConverter
I'm trying to import a well-formed bit of HTML where the span nodes have id attributes meaningful for later use in my application. However, running the usual TextConverter.importToFlow call results in a TextFlow where the corresponding SpanElements do not have their id properties initialized.
var simple:XML = <p><span id="hello">world</span></p>;
var textFlow:TextFlow = TextConverter.importToFlow(simple.toXMLString(), TextConverter.TEXT_FIELD_HTML_FORMAT);
var helloSpan:FlowElement = textFlow.getElementByID("hello");
Contrary to expectations, the helloSpan is always null. Poking through the textFlow children, one can see that the id value for our span is null.
