Steps to reproduce:
1. Compile the attached MXML code (or see below):
<?xml version="1.0" encoding="utf-8"?>
<Application xmlns="
http://ns.adobe.com/mxml/2009"
xmlns:mx="library:adobe/flex/halo"
layout="flex.layout.VerticalLayout">
<TextArea id="textArea" width="300" height="200">
<content>
<p>The quick beige fox.</p>
</content>
</TextArea>
</Application>
Actual Results:
Compiler error:
Could not resolve <p> to a component implementation.
Expected Results:
No Compiler error
Workaround (if any):
Use a CDATA block:
<TextArea id="textArea" width="300" height="200">
<content>
<![CDATA[
<p>The quick brown fox</p>
]]>
</content>
</TextArea>
Gordon, this looks like a regression.