Another question - when I call setHTML() on a RichTextArea, with a value like this:
<span style="random css here">HELLO THERE<br></span>
... most of the time the <br> is escaped, so the underlying HTML is:
<span style="random css here">HELLO THERE<br></span>
SOMETIMES, however, it is rendered exactly as-is, not escaped. It seems to be timing-dependent, because if I put a delay between the attachment of the RichTextArea and the call to setHTML(), it rendereds properly, without any escaping.
Has anyone seen this? Any other time-dependent twitchiness like this in RichTextArea?
- Tim