History | Log In     View a printable version of the current page.  
Issue Details (XML)

Key: SDK-16536
Type: Bug Bug
Status: Closed Closed
Resolution: Duplicate
Priority: B B
Assignee: Peter deHaan (Adobe)
Reporter: Peter deHaan (Adobe)
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
Flex SDK

Gumbo TextArea control displays "Could not resolve <p> to a component implementation" error when using <p> tag in content property

Created: 08/20/08 03:12 PM   Updated: 08/20/08 04:50 PM
Component/s: Spark: TextArea
Security Level: Public (All JIRA Users )

File Attachments: 1. Text File Gumbo_TextArea_content_test.mxml (0.6 kb)

Issue Links:
Relationship
This issue relates to:
SDK-16531 Mixed Content Compilation fails becau... A Closed
 

Severity: Incorrectly Functioning with Workaround
Reproducibility: Every Time
Discoverability: Medium
Found in Version: SDK Gumbo Iteration 7
Milestone: SDK Gumbo Iteration 7
Affected OS(s): All OS Platforms - All
Steps to Reproduce:
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>

 
Language Found: English
Bugbase Id: none
Triaged: Yes
Regression: Yes
QA Owner: Peter deHaan (Adobe)
Resolved by: Peter deHaan (Adobe)
Participants: Peter deHaan (Adobe)


 All   Comments      Sort Order:
Peter deHaan (Adobe) - [08/20/08 03:20 PM ]
Opening to Gordon.

Gordon, this looks like a regression.

Peter deHaan (Adobe) - [08/20/08 03:24 PM ]
Resolving/Closing as dupe of SDK-16531

Peter deHaan (Adobe) - [08/20/08 04:50 PM ]
Fixed with the following checkin:
[svn] 2932: Updated manifests with recent changes to TCAL package and class names.