You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2012/10/28 08:16:59 UTC

svn commit: r1402945 - in /incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar: SWFs/comps/ Styles/ Styles/baselines/

Author: aharui
Date: Sun Oct 28 07:16:57 2012
New Revision: 1402945

URL: http://svn.apache.org/viewvc?rev=1402945&view=rev
Log:
Get these tests to run on AIR and fix baselines on mac/win

Added:
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG@air.png   (with props)
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon@air.png   (with props)
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseDown_NonselectedTab@air.png   (with props)
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseDown_selectedTab@air.png   (with props)
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseOver_NonselectedTab@air.png   (with props)
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseOver_selectedTab@air.png   (with props)
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseDown_NonselectedTab@air.png   (with props)
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseDown_selectedTab@air.png   (with props)
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseOver_NonselectedTab@air.png   (with props)
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseOver_selectedTab@air.png   (with props)
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_JPG@air.png   (with props)
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_JPGIcon@air.png   (with props)
Modified:
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_gif_runtime.mxml
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_jpg_runtime.mxml
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_png_runtime.mxml
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_swf_runtime.mxml
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_gif_runtime.mxml
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_jpg_runtime.mxml
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_png_runtime.mxml
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/LinkBar_SkinStates_Basic.mxml
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_GIF.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_JPG.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_PNG.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_SWF.png

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_gif_runtime.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_gif_runtime.mxml?rev=1402945&r1=1402944&r2=1402945&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_gif_runtime.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_gif_runtime.mxml Sun Oct 28 07:16:57 2012
@@ -18,6 +18,28 @@
 
 -->
 <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml">	
+	<mx:Script>
+		<![CDATA[
+			private function airify(s:String):String
+			{
+				if (ApplicationDomain.currentDomain.hasDefinition("flash.filesystem.File"))
+				{
+					var c:Class = Class(ApplicationDomain.currentDomain.getDefinition("flash.filesystem.File"));
+					var f:Object = c.applicationDirectory;
+					var p:String = f.nativePath;
+					while (s.indexOf("../") == 0)
+					{
+						var dot:int = p.lastIndexOf("/");
+						p = p.substr(0, dot);
+						s = s.substr(3);
+					}
+					f.nativePath = p + "/" + s;
+					return f.url;
+				}
+				return s;				
+			}
+		]]>
+	</mx:Script>
 	<mx:states>
 		<mx:State name="notBase">
 			<mx:RemoveChild target="{baseButton}"/>
@@ -25,40 +47,40 @@
 		<mx:State name="up" />
 		<mx:State name="over" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonOver.gif" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonOver.gif')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="down" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonDown.gif" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonDown.gif')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="disabled" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonDisabled.gif" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonDisabled.gif')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedUp" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedUp.gif" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedUp.gif')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedOver" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedOver.gif" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedOver.gif')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDown" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedDown.gif" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedDown.gif')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDisabled" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedDown.gif" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedDown.gif')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 	</mx:states>
 		
-	<mx:Image id="baseButton" source="../../../../../Assets/Images/ButtonImages/buttonUp.gif" maintainAspectRatio="false"  width="100%" height="100%"/>
+	<mx:Image id="baseButton" source="{airify('../../../../Assets/Images/ButtonImages/buttonUp.gif')}" maintainAspectRatio="false"  width="100%" height="100%"/>
 </mx:Canvas>
\ No newline at end of file

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_jpg_runtime.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_jpg_runtime.mxml?rev=1402945&r1=1402944&r2=1402945&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_jpg_runtime.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_jpg_runtime.mxml Sun Oct 28 07:16:57 2012
@@ -18,6 +18,28 @@
 
 -->
 <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml">
+	<mx:Script>
+		<![CDATA[
+			private function airify(s:String):String
+			{
+				if (ApplicationDomain.currentDomain.hasDefinition("flash.filesystem.File"))
+				{
+					var c:Class = Class(ApplicationDomain.currentDomain.getDefinition("flash.filesystem.File"));
+					var f:Object = c.applicationDirectory;
+					var p:String = f.nativePath;
+					while (s.indexOf("../") == 0)
+					{
+						var dot:int = p.lastIndexOf("/");
+						p = p.substr(0, dot);
+						s = s.substr(3);
+					}
+					f.nativePath = p + "/" + s;
+					return f.url;
+				}
+				return s;				
+			}
+		]]>
+	</mx:Script>
 	<mx:states>
 		<mx:State name="notBase">
 			<mx:RemoveChild target="{baseButton}"/>
@@ -25,39 +47,39 @@
 		<mx:State name="up" />
 		<mx:State name="over" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonOver.jpg" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonOver.jpg')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="down" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonDown.jpg" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonDown.jpg')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="disabled" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonDisabled.jpg" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonDisabled.jpg')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedUp" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedUp.jpg" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedUp.jpg')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedOver" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedOver.jpg" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedOver.jpg')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDown" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedDown.jpg" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedDown.jpg')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDisabled" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedDown.jpg" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedDown.jpg')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 	</mx:states>	
-	<mx:Image id="baseButton" source="../../../../../Assets/Images/ButtonImages/buttonUp.jpg" maintainAspectRatio="false"  width="100%" height="100%"/>
+	<mx:Image id="baseButton" source="{airify('../../../../Assets/Images/ButtonImages/buttonUp.jpg')}" maintainAspectRatio="false"  width="100%" height="100%"/>
 </mx:Canvas>
\ No newline at end of file

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_png_runtime.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_png_runtime.mxml?rev=1402945&r1=1402944&r2=1402945&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_png_runtime.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_png_runtime.mxml Sun Oct 28 07:16:57 2012
@@ -18,6 +18,28 @@
 
 -->
 <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml">
+	<mx:Script>
+		<![CDATA[
+			private function airify(s:String):String
+			{
+				if (ApplicationDomain.currentDomain.hasDefinition("flash.filesystem.File"))
+				{
+					var c:Class = Class(ApplicationDomain.currentDomain.getDefinition("flash.filesystem.File"));
+					var f:Object = c.applicationDirectory;
+					var p:String = f.nativePath;
+					while (s.indexOf("../") == 0)
+					{
+						var dot:int = p.lastIndexOf("/");
+						p = p.substr(0, dot);
+						s = s.substr(3);
+					}
+					f.nativePath = p + "/" + s;
+					return f.url;
+				}
+				return s;				
+			}
+		]]>
+	</mx:Script>
 	<mx:states>
 		<mx:State name="notBase">
 			<mx:RemoveChild target="{baseButton}"/>
@@ -25,39 +47,39 @@
 		<mx:State name="up" />
 		<mx:State name="over" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonOver.png" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonOver.png')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="down" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonDown.png" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonDown.png')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="disabled" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonDisabled.png" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonDisabled.png')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedUp" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedUp.png" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedUp.png')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedOver" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedOver.png" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedOver.png')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDown" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedDown.png" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedDown.png')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDisabled" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedDown.png" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedDown.png')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 	</mx:states>	
-	<mx:Image id="baseButton" source="../../../../../Assets/Images/ButtonImages/buttonUp.png" maintainAspectRatio="false"  width="100%" height="100%"/>
+	<mx:Image id="baseButton" source="{airify('../../../../Assets/Images/ButtonImages/buttonUp.png')}" maintainAspectRatio="false"  width="100%" height="100%"/>
 </mx:Canvas>
\ No newline at end of file

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_swf_runtime.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_swf_runtime.mxml?rev=1402945&r1=1402944&r2=1402945&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_swf_runtime.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/button_swf_runtime.mxml Sun Oct 28 07:16:57 2012
@@ -18,6 +18,28 @@
 
 -->
 <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml">	
+	<mx:Script>
+		<![CDATA[
+			private function airify(s:String):String
+			{
+				if (ApplicationDomain.currentDomain.hasDefinition("flash.filesystem.File"))
+				{
+					var c:Class = Class(ApplicationDomain.currentDomain.getDefinition("flash.filesystem.File"));
+					var f:Object = c.applicationDirectory;
+					var p:String = f.nativePath;
+					while (s.indexOf("../") == 0)
+					{
+						var dot:int = p.lastIndexOf("/");
+						p = p.substr(0, dot);
+						s = s.substr(3);
+					}
+					f.nativePath = p + "/" + s;
+					return f.url;
+				}
+				return s;				
+			}
+		]]>
+	</mx:Script>
 	<mx:states>
 		<mx:State name="notBase">
 			<mx:RemoveChild target="{baseButton}"/>
@@ -25,40 +47,40 @@
 		<mx:State name="up" />
 		<mx:State name="over" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonOver.swf" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonOver.swf')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="down" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonDown.swf" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonDown.swf')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="disabled" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonDisabled.swf" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonDisabled.swf')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedUp" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedUp.swf" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedUp.swf')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedOver" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedOver.swf" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedOver.swf')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDown" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedDown.swf" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedDown.swf')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDisabled" basedOn="notBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../../Assets/Images/ButtonImages/buttonSelectedDown.swf" maintainAspectRatio="false" width="100%" height="100%"/> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/buttonSelectedDown.swf')}" maintainAspectRatio="false" width="100%" height="100%"/> 
 			</mx:AddChild>
 		</mx:State>
 	</mx:states>
 		
-	<mx:Image id="baseButton" source="../../../../../Assets/Images/ButtonImages/buttonUp.swf" maintainAspectRatio="false"  width="100%" height="100%"/>
+	<mx:Image id="baseButton" source="{airify('../../../../Assets/Images/ButtonImages/buttonUp.swf')}" maintainAspectRatio="false"  width="100%" height="100%"/>
 </mx:Canvas>
\ No newline at end of file

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_gif_runtime.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_gif_runtime.mxml?rev=1402945&r1=1402944&r2=1402945&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_gif_runtime.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_gif_runtime.mxml Sun Oct 28 07:16:57 2012
@@ -18,6 +18,28 @@
 
 -->
 <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"  paddingRight="0" paddingLeft="0" paddingTop="0" paddingBottom="0">	
+	<mx:Script>
+		<![CDATA[
+			private function airify(s:String):String
+			{
+				if (ApplicationDomain.currentDomain.hasDefinition("flash.filesystem.File"))
+				{
+					var c:Class = Class(ApplicationDomain.currentDomain.getDefinition("flash.filesystem.File"));
+					var f:Object = c.applicationDirectory;
+					var p:String = f.nativePath;
+					while (s.indexOf("../") == 0)
+					{
+						var dot:int = p.lastIndexOf("/");
+						p = p.substr(0, dot);
+						s = s.substr(3);
+					}
+					f.nativePath = p + "/" + s;
+					return f.url;
+				}
+				return s;				
+			}
+		]]>
+	</mx:Script>
 	<mx:states>
 		<mx:State name="notIconBase">
 			<mx:RemoveChild target="{baseIcon}"/>
@@ -25,39 +47,39 @@
 		<mx:State name="up" />
 		<mx:State name="over" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconOver.gif" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconOver.gif')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="down" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconDown.gif" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconDown.gif')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="disabled" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconDisabled.gif" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconDisabled.gif')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedUp" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconSelectedUp.gif" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconSelectedUp.gif')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedOver" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconSelectedOver.gif" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconSelectedOver.gif')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDown" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconSelectedDown.gif" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconSelectedDown.gif')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDisabled" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconSelectedDisabled.gif" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconSelectedDisabled.gif')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 	</mx:states>
-	<mx:Image id="baseIcon" source="../../../../Assets/Images/ButtonImages/iconUp.gif" maintainAspectRatio="false"  width="13" height="13"/>
+	<mx:Image id="baseIcon" source="{airify('../../../../Assets/Images/ButtonImages/iconUp.gif')}" maintainAspectRatio="false"  width="13" height="13"/>
 </mx:VBox>
\ No newline at end of file

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_jpg_runtime.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_jpg_runtime.mxml?rev=1402945&r1=1402944&r2=1402945&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_jpg_runtime.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_jpg_runtime.mxml Sun Oct 28 07:16:57 2012
@@ -18,6 +18,28 @@
 
 -->
 <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"  paddingRight="0" paddingLeft="0" paddingTop="0" paddingBottom="0">	
+	<mx:Script>
+		<![CDATA[
+			private function airify(s:String):String
+			{
+				if (ApplicationDomain.currentDomain.hasDefinition("flash.filesystem.File"))
+				{
+					var c:Class = Class(ApplicationDomain.currentDomain.getDefinition("flash.filesystem.File"));
+					var f:Object = c.applicationDirectory;
+					var p:String = f.nativePath;
+					while (s.indexOf("../") == 0)
+					{
+						var dot:int = p.lastIndexOf("/");
+						p = p.substr(0, dot);
+						s = s.substr(3);
+					}
+					f.nativePath = p + "/" + s;
+					return f.url;
+				}
+				return s;				
+			}
+		]]>
+	</mx:Script>
 	<mx:states>
 		<mx:State name="notIconBase">
 			<mx:RemoveChild target="{baseIcon}"/>
@@ -25,39 +47,39 @@
 		<mx:State name="up" />
 		<mx:State name="over" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconOver.jpg" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconOver.jpg')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="down" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconDown.jpg" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconDown.jpg')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="disabled" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconDisabled.jpg" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconDisabled.jpg')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedUp" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconSelectedUp.jpg" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconSelectedUp.jpg')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedOver" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconSelectedOver.jpg" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconSelectedOver.jpg')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDown" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconSelectedDown.jpg" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconSelectedDown.jpg')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDisabled" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconSelectedDisabled.jpg" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconSelectedDisabled.jpg')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 	</mx:states>
-	<mx:Image id="baseIcon" source="../../../../Assets/Images/ButtonImages/iconUp.jpg" maintainAspectRatio="false"  width="13" height="13"/>
+	<mx:Image id="baseIcon" source="{airify('../../../../Assets/Images/ButtonImages/iconUp.jpg')}" maintainAspectRatio="false"  width="13" height="13"/>
 </mx:VBox>
\ No newline at end of file

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_png_runtime.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_png_runtime.mxml?rev=1402945&r1=1402944&r2=1402945&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_png_runtime.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/SWFs/comps/icon_png_runtime.mxml Sun Oct 28 07:16:57 2012
@@ -18,6 +18,28 @@
 
 -->
 <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"  paddingRight="0" paddingLeft="0" paddingTop="0" paddingBottom="0">	
+	<mx:Script>
+		<![CDATA[
+			private function airify(s:String):String
+			{
+				if (ApplicationDomain.currentDomain.hasDefinition("flash.filesystem.File"))
+				{
+					var c:Class = Class(ApplicationDomain.currentDomain.getDefinition("flash.filesystem.File"));
+					var f:Object = c.applicationDirectory;
+					var p:String = f.nativePath;
+					while (s.indexOf("../") == 0)
+					{
+						var dot:int = p.lastIndexOf("/");
+						p = p.substr(0, dot);
+						s = s.substr(3);
+					}
+					f.nativePath = p + "/" + s;
+					return f.url;
+				}
+				return s;				
+			}
+		]]>
+	</mx:Script>
 	<mx:states>
 		<mx:State name="notIconBase">
 			<mx:RemoveChild target="{baseIcon}"/>
@@ -25,39 +47,39 @@
 		<mx:State name="up" />
 		<mx:State name="over" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconOver.png" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconOver.png')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="down" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconDown.png" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconDown.png')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="disabled" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconDisabled.png" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconDisabled.png')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedUp" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconSelectedUp.png" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconSelectedUp.png')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedOver" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconSelectedOver.png" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconSelectedOver.png')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDown" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconSelectedDown.png" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconSelectedDown.png')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 		<mx:State name="selectedDisabled" basedOn="notIconBase">
 			<mx:AddChild creationPolicy="all">
-				<mx:Image source="../../../../Assets/Images/ButtonImages/iconSelectedDisabled.png" maintainAspectRatio="false" width="13" height="13" /> 
+				<mx:Image source="{airify('../../../../Assets/Images/ButtonImages/iconSelectedDisabled.png')}" maintainAspectRatio="false" width="13" height="13" /> 
 			</mx:AddChild>
 		</mx:State>
 	</mx:states>
-	<mx:Image id="baseIcon" source="../../../../Assets/Images/ButtonImages/iconUp.png" maintainAspectRatio="false"  width="13" height="13"/>
+	<mx:Image id="baseIcon" source="{airify('../../../../Assets/Images/ButtonImages/iconUp.png')}" maintainAspectRatio="false"  width="13" height="13"/>
 </mx:VBox>
\ No newline at end of file

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/LinkBar_SkinStates_Basic.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/LinkBar_SkinStates_Basic.mxml?rev=1402945&r1=1402944&r2=1402945&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/LinkBar_SkinStates_Basic.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/LinkBar_SkinStates_Basic.mxml Sun Oct 28 07:16:57 2012
@@ -136,7 +136,9 @@
             </setup>
             <body>
                 <WaitForEffectsToEnd />
-                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG.png" timeout="5000" />
+                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/" timeout="5000" >
+					<ConditionalValue device="air" />
+				</CompareBitmap>
             </body>
         </TestCase>
         <TestCase testID="LinkBar_Styles_SkinStates_Embeding_JPG_mouseOver_selectedTab" keywords="[enabled, SkinStates,EmbedJPG, LinkBar]" >
@@ -148,7 +150,9 @@
             <body>
                 <DispatchMouseEvent type="rollOver" localX="10" localY="10" target="lb" waitEvent="rollOver" waitTarget="lb" />
                 <WaitForEffectsToEnd />
-                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseOver_selectedTab.png" timeout="5000" />
+                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/" timeout="5000" >
+					<ConditionalValue device="air" />
+				</CompareBitmap>
             </body>
         </TestCase>
         <TestCase testID="LinkBar_Styles_SkinStates_Embeding_JPG_mouseOver_NonselectedTab" keywords="[enabled, SkinStates,EmbedJPG, LinkBar]" >
@@ -160,7 +164,9 @@
             <body>
                 <DispatchMouseEvent type="rollOver" localX="109" localY="10" target="lb" waitEvent="rollOver" waitTarget="lb" />
                 <WaitForEffectsToEnd />
-                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseOver_NonselectedTab.png" timeout="5000" />
+                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/" timeout="5000" >
+					<ConditionalValue device="air" />
+				</CompareBitmap>
             </body>
         </TestCase>
         <TestCase testID="LinkBar_Styles_SkinStates_Embeding_JPG_mouseDown_selectedTab" keywords="[enabled, SkinStates,EmbedJPG, LinkBar]" >
@@ -173,7 +179,9 @@
                 <DispatchMouseEvent type="rollOver" localX="10" localY="10" target="lb" waitEvent="rollOver" waitTarget="lb" />
                 <DispatchMouseEvent type="mouseDown" localX="10" localY="10" target="lb" waitEvent="mouseDown" waitTarget="lb" />
                 <WaitForEffectsToEnd />
-                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseDown_selectedTab.png" timeout="5000" />
+                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/" timeout="5000" >
+					<ConditionalValue device="air" />
+				</CompareBitmap>
             </body>
         </TestCase>
         <TestCase testID="LinkBar_Styles_SkinStates_Embeding_JPG_mouseDown_NonselectedTab" keywords="[enabled, SkinStates,EmbedJPG, LinkBar]" >
@@ -186,7 +194,9 @@
                 <DispatchMouseEvent type="rollOver" localX="109" localY="10" target="lb" waitEvent="rollOver" waitTarget="lb" />
                 <DispatchMouseEvent type="mouseDown" localX="109" localY="10" target="lb" waitEvent="mouseDown" waitTarget="lb" />
                 <WaitForEffectsToEnd />
-                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseDown_NonselectedTab.png" timeout="5000" />
+                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/" timeout="5000" >
+					<ConditionalValue device="air" />
+				</CompareBitmap>
             </body>
         </TestCase>
         <TestCase testID="LinkBar_Styles_SkinStates_Embeding_JPG_Disabled" keywords="[disabled, SkinStates,EmbedJPG, LinkBar]" >
@@ -428,7 +438,9 @@
             </setup>
             <body>
                 <WaitForEffectsToEnd />
-                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/LinkBar_Styles_SkinStates_runtime_JPG.png" timeout="5000" />
+                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/" timeout="5000" >
+					<ConditionalValue device="air" />
+				</CompareBitmap>
             </body>
         </TestCase>
         <TestCase testID="LinkBar_Styles_SkinStates_runtime_PNG" keywords="[enabled, SkinStates,runtimePNG, LinkBar]" >
@@ -522,7 +534,9 @@
             </setup>
             <body>
                 <WaitForEffectsToEnd />
-                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon.png" timeout="5000" />
+                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/" timeout="5000" >
+					<ConditionalValue device="air" />
+				</CompareBitmap>
             </body>
         </TestCase>
         <TestCase testID="LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseOver_selectedTab" keywords="[enabled, SkinStates,EmbedJPGIcon, LinkBar]" >
@@ -535,7 +549,9 @@
             <body>
                 <DispatchMouseEvent type="rollOver" localX="10" localY="10" target="lb" waitEvent="rollOver" waitTarget="lb" />
                 <WaitForEffectsToEnd />
-                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseOver_selectedTab.png" timeout="5000" />
+                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/" timeout="5000" >
+					<ConditionalValue device="air" />
+				</CompareBitmap>
             </body>
         </TestCase>
         <TestCase testID="LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseOver_NonselectedTab" keywords="[enabled, SkinStates,EmbedJPGIcon, LinkBar]" >
@@ -548,7 +564,9 @@
             <body>
                 <DispatchMouseEvent type="rollOver" localX="109" localY="10" target="lb" waitEvent="rollOver" waitTarget="lb" />
                 <WaitForEffectsToEnd />
-                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseOver_NonselectedTab.png" timeout="5000" />
+                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/" timeout="5000" >
+					<ConditionalValue device="air" />
+				</CompareBitmap>
             </body>
         </TestCase>
         <TestCase testID="LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseDown_selectedTab" keywords="[enabled, SkinStates,EmbedJPGIcon, LinkBar]" >
@@ -561,7 +579,9 @@
                 <DispatchMouseEvent type="rollOver" localX="10" localY="10" target="lb" waitEvent="rollOver" waitTarget="lb" />
                 <DispatchMouseEvent type="mouseDown" localX="10" localY="10" target="lb" waitEvent="mouseDown" waitTarget="lb" />
                 <WaitForEffectsToEnd />
-                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseDown_selectedTab.png" timeout="5000" />
+                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/" timeout="5000" >
+					<ConditionalValue device="air" />
+				</CompareBitmap>
             </body>
         </TestCase>
         <TestCase testID="LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseDown_NonselectedTab" keywords="[enabled, SkinStates,EmbedJPGIcon, LinkBar]" >
@@ -574,7 +594,9 @@
                 <DispatchMouseEvent type="rollOver" localX="109" localY="10" target="lb" waitEvent="rollOver" waitTarget="lb" />
                 <DispatchMouseEvent type="mouseDown" localX="109" localY="10" target="lb" waitEvent="mouseDown" waitTarget="lb" />
                 <WaitForEffectsToEnd />
-                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseDown_NonselectedTab.png" timeout="5000" />
+                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/" timeout="5000" >
+					<ConditionalValue device="air" />
+				</CompareBitmap>
             </body>
         </TestCase>
         <TestCase testID="LinkBar_Styles_SkinStates_Embeding_JPGIcon_Disabled" keywords="[disabled, SkinStates,EmbedJPGIcon, LinkBar]" >
@@ -817,7 +839,9 @@
             </setup>
             <body>
                 <WaitForEffectsToEnd />
-                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/LinkBar_Styles_SkinStates_runtime_JPGIcon.png" timeout="5000" />
+                <CompareBitmap numColorVariances="10" ignoreMaxColorVariance="true"   target="lb" url="../Styles/baselines/" timeout="5000" >
+					<ConditionalValue device="air" />
+				</CompareBitmap>
             </body>
         </TestCase>
         <TestCase testID="LinkBar_Styles_SkinStates_runtime_PNGIcon" keywords="[enabled, SkinStates,runtimePNGIcon, LinkBar]" >

Added: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG@air.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG%40air.png?rev=1402945&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG@air.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon@air.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon%40air.png?rev=1402945&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon@air.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseDown_NonselectedTab@air.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseDown_NonselectedTab%40air.png?rev=1402945&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseDown_NonselectedTab@air.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseDown_selectedTab@air.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseDown_selectedTab%40air.png?rev=1402945&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseDown_selectedTab@air.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseOver_NonselectedTab@air.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseOver_NonselectedTab%40air.png?rev=1402945&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseOver_NonselectedTab@air.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseOver_selectedTab@air.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseOver_selectedTab%40air.png?rev=1402945&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPGIcon_mouseOver_selectedTab@air.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseDown_NonselectedTab@air.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseDown_NonselectedTab%40air.png?rev=1402945&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseDown_NonselectedTab@air.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseDown_selectedTab@air.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseDown_selectedTab%40air.png?rev=1402945&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseDown_selectedTab@air.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseOver_NonselectedTab@air.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseOver_NonselectedTab%40air.png?rev=1402945&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseOver_NonselectedTab@air.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseOver_selectedTab@air.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseOver_selectedTab%40air.png?rev=1402945&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_Embeding_JPG_mouseOver_selectedTab@air.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_GIF.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_GIF.png?rev=1402945&r1=1402944&r2=1402945&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_JPG.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_JPG.png?rev=1402945&r1=1402944&r2=1402945&view=diff
==============================================================================
Binary files - no diff available.

Added: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_JPG@air.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_JPG%40air.png?rev=1402945&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_JPG@air.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_JPGIcon@air.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_JPGIcon%40air.png?rev=1402945&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_JPGIcon@air.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_PNG.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_PNG.png?rev=1402945&r1=1402944&r2=1402945&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_SWF.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkBar/Styles/baselines/LinkBar_Styles_SkinStates_runtime_SWF.png?rev=1402945&r1=1402944&r2=1402945&view=diff
==============================================================================
Binary files - no diff available.