Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Not A Problem
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): All OS Platforms
Language Found: English
Description
Steps to reproduce:
1. run following codes:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/halo"
width="50%" height="50%" >
<s:Group id="parentGroup" >
<s:Button x="300" label="parent" top="120" bottom="150"/>
<s:Group id="childGroup">
<s:layout>
<s:BasicLayout/>
</s:layout>
<s:Button label="child" top="0" bottom="100"/>
<s:Button label="button1" horizontalCenter="0" y="100"/>
<s:CheckBox label="checkbox" x="550" verticalCenter="50" />
<s:Rect id="border2" width="50%" height="100%">
<s:stroke>
<s:SolidColorStroke color="0x00FF00"/>
</s:stroke>
</s:Rect>
</s:Group>
<s:Rect id="border" left="0" right="0" top="0" bottom="0">
<s:stroke>
<s:SolidColorStroke color="0xFF0000"/>
</s:stroke>
</s:Rect>
</s:Group>
</s:Application>
2.
3.
Actual Results:
the left/right lines for Rect="border" are missing.
Expected Results:
Rect="border" should have all line displayed.
Workaround (if any):