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/09/18 07:59:17 UTC

svn commit: r1386997 - in /incubator/flex/sdk/branches/develop/mustella/tests/components: HorizontalList/Properties/baselines/ HorizontalList/SWFs/ LinkButton/properties/baselines/ LinkButton/swfs/ MenuBar/Halo/Integration/baselines/ MenuBar/Halo/SWFs/...

Author: aharui
Date: Tue Sep 18 05:59:16 2012
New Revision: 1386997

URL: http://svn.apache.org/viewvc?rev=1386997&view=rev
Log:
Fix font embedding in a few more tests.  Some of these tests compile in FTE text so need embedAsCFF=true

Modified:
    incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/Properties/baselines/HorizontalList_Mirroring_rtl.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/Properties/baselines/Key_selection1_Mirroring_rtl.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/Properties/baselines/Key_selection_Mirroring_rtl.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/Properties/baselines/Key_selection_end_Mirroring_rtl.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/SWFs/HorizontalList_Mirroring_Basic.mxml
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/properties/baselines/layoutDirection_property_MXLinkButton_rtl.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/properties/baselines/layoutDirection_property_MXLinkButton_rtl_setOnParent.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/properties/baselines/layoutDirection_property_MXLinkButton_rtl_withIcon.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/swfs/LinkButton_spark_main.mxml
    incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/Integration/baselines/mb_blurFilter.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/Integration/baselines/mb_gradientBevelFilter.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/Integration/baselines/mb_gradientGlowFilter.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/SWFs/MenuBar_Filters.mxml
    incubator/flex/sdk/branches/develop/mustella/tests/components/Text/Properties/baselines/Text_layoutDirection_RTL_onParent.png
    incubator/flex/sdk/branches/develop/mustella/tests/components/Text/SWFs/Text_Spark_main.mxml

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/Properties/baselines/HorizontalList_Mirroring_rtl.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/Properties/baselines/HorizontalList_Mirroring_rtl.png?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/Properties/baselines/Key_selection1_Mirroring_rtl.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/Properties/baselines/Key_selection1_Mirroring_rtl.png?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/Properties/baselines/Key_selection_Mirroring_rtl.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/Properties/baselines/Key_selection_Mirroring_rtl.png?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/Properties/baselines/Key_selection_end_Mirroring_rtl.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/Properties/baselines/Key_selection_end_Mirroring_rtl.png?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/SWFs/HorizontalList_Mirroring_Basic.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/SWFs/HorizontalList_Mirroring_Basic.mxml?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/SWFs/HorizontalList_Mirroring_Basic.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/components/HorizontalList/SWFs/HorizontalList_Mirroring_Basic.mxml Tue Sep 18 05:59:16 2012
@@ -43,6 +43,27 @@
 	
     <mx:Style>
 		@namespace "library://ns.adobe.com/flex/mx";
+		@namespace s "library://ns.adobe.com/flex/spark";
+
+		@font-face {
+			src: url("../../../../Assets/Fonts/Open_Sans/OpenSans-Regular.ttf");
+			fontFamily: EmbeddedVerdana;
+			embedAsCFF: true;
+		}
+		
+		@font-face {
+			src: url("../../../../Assets/Fonts/Open_Sans/OpenSans-Bold.ttf");
+			fontWeight: bold;
+			fontFamily: EmbeddedVerdana;
+			embedAsCFF: true;
+		}	
+		
+		@font-face {
+			src: url("../../../../Assets/Fonts/Open_Sans/OpenSans-Italic.ttf");
+			fontStyle: italic;
+			fontFamily: EmbeddedVerdana;
+			embedAsCFF: true;
+		}
 
 		global {
 			direction: rtl;
@@ -50,7 +71,7 @@
 		}
 	
         HorizontalList{
-            fontFamily: MyVerdana;
+            fontFamily: EmbeddedVerdana;
         }
     </mx:Style>
 

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/properties/baselines/layoutDirection_property_MXLinkButton_rtl.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/properties/baselines/layoutDirection_property_MXLinkButton_rtl.png?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/properties/baselines/layoutDirection_property_MXLinkButton_rtl_setOnParent.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/properties/baselines/layoutDirection_property_MXLinkButton_rtl_setOnParent.png?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/properties/baselines/layoutDirection_property_MXLinkButton_rtl_withIcon.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/properties/baselines/layoutDirection_property_MXLinkButton_rtl_withIcon.png?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/swfs/LinkButton_spark_main.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/swfs/LinkButton_spark_main.mxml?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/swfs/LinkButton_spark_main.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/components/LinkButton/swfs/LinkButton_spark_main.mxml Tue Sep 18 05:59:16 2012
@@ -34,7 +34,7 @@
         @namespace comps "comps.*";
 
         global {
-            fontFamily: myVerdana;
+            fontFamily: MyVerdana;
         }
         
         .padding5 {

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/Integration/baselines/mb_blurFilter.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/Integration/baselines/mb_blurFilter.png?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/Integration/baselines/mb_gradientBevelFilter.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/Integration/baselines/mb_gradientBevelFilter.png?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/Integration/baselines/mb_gradientGlowFilter.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/Integration/baselines/mb_gradientGlowFilter.png?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/SWFs/MenuBar_Filters.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/SWFs/MenuBar_Filters.mxml?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/SWFs/MenuBar_Filters.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/components/MenuBar/Halo/SWFs/MenuBar_Filters.mxml Tue Sep 18 05:59:16 2012
@@ -30,6 +30,7 @@
 	]]>
 	</mx:Script>
 
+<mx:Style source="../../../../../Assets/Fonts/myStyles.css" />
 <mx:Style source="../Styles/menuStyles.css" />
 
 <mx:MenuBar id="mb" >

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/Text/Properties/baselines/Text_layoutDirection_RTL_onParent.png
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/Text/Properties/baselines/Text_layoutDirection_RTL_onParent.png?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/flex/sdk/branches/develop/mustella/tests/components/Text/SWFs/Text_Spark_main.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/components/Text/SWFs/Text_Spark_main.mxml?rev=1386997&r1=1386996&r2=1386997&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/tests/components/Text/SWFs/Text_Spark_main.mxml (original)
+++ incubator/flex/sdk/branches/develop/mustella/tests/components/Text/SWFs/Text_Spark_main.mxml Tue Sep 18 05:59:16 2012
@@ -22,12 +22,12 @@
                xmlns:mx="library://ns.adobe.com/flex/mx" 
                >
  
-    <fx:Style source="../../../../Assets/Fonts/myStyles.css" />
+    <fx:Style source="../../../../Assets/Fonts/VeraFontStyles.css" />
     <fx:Style>
         @namespace mx "library://ns.adobe.com/flex/mx";
 
         global {
-            fontFamily: MyVerdana;
+            fontFamily: MyVeraSpark;
         }
         
         mx|Box {