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 2013/05/15 21:00:21 UTC

[01/17] git commit: [flex-sdk] [refs/heads/develop] - Try to handle deferred focusIn events now that Spark TextInput/TextArea use callLater before actually assigning focus

Updated Branches:
  refs/heads/develop 3e286fddd -> 35bb3da64


Try to handle deferred focusIn events now that Spark TextInput/TextArea use callLater before actually assigning focus


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/37929a7f
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/37929a7f
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/37929a7f

Branch: refs/heads/develop
Commit: 37929a7f71efe3191bd1ed8813801ba95640a708
Parents: 3e286fd
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 13 20:27:26 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:18 2013 -0700

----------------------------------------------------------------------
 mustella/as3/src/mustella/DispatchKeyEvent.as |  389 ++++++++++++--------
 mustella/as3/src/mustella/TestStep.as         |    4 +
 mustella/as3/src/mustella/UnitTester.as       |   11 +
 3 files changed, 241 insertions(+), 163 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/37929a7f/mustella/as3/src/mustella/DispatchKeyEvent.as
----------------------------------------------------------------------
diff --git a/mustella/as3/src/mustella/DispatchKeyEvent.as b/mustella/as3/src/mustella/DispatchKeyEvent.as
index adfeff8..15830db 100644
--- a/mustella/as3/src/mustella/DispatchKeyEvent.as
+++ b/mustella/as3/src/mustella/DispatchKeyEvent.as
@@ -20,14 +20,13 @@ package {
 import flash.display.DisplayObject;
 import flash.display.DisplayObjectContainer;
 import flash.display.InteractiveObject;
-import flash.events.KeyboardEvent;
 import flash.events.Event;
 import flash.events.FocusEvent;
+import flash.events.KeyboardEvent;
 import flash.events.TextEvent;
-
+import flash.system.Capabilities;
 import flash.text.TextField;
 import flash.ui.Keyboard;
-import flash.system.Capabilities;
 
 
 /**
@@ -56,6 +55,14 @@ public class DispatchKeyEvent extends TestStep
 	public static const FLASH_UI_KEYBOARD_MENU:uint = 0x01000012;
 	public static const FLASH_UI_KEYBOARD_SEARCH:uint = 0x0100001F;
 	
+    private var inDispatchKey:Boolean;
+    private var gotFocusIn:Boolean;
+    private var charSequence:Array;
+    private var keySequence:Array;
+    private var currentRepeat:int;
+    private var currentKey:int;
+    private var sendBoth:Boolean;
+    
     /**
      *  Set the target's property to the specified value
      */
@@ -63,7 +70,7 @@ public class DispatchKeyEvent extends TestStep
     {
         UnitTester.blockFocusEvents = false;
 
-        var sendBoth:Boolean = false;
+        sendBoth = false;
 
         if (!type)
         {
@@ -73,8 +80,8 @@ public class DispatchKeyEvent extends TestStep
         
         var i:int;
         var n:int;
-        var charSequence:Array = new Array();
-        var keySequence:Array = new Array();
+        charSequence = new Array();
+        keySequence = new Array();
 		
 		
         if (charCode)
@@ -139,166 +146,22 @@ public class DispatchKeyEvent extends TestStep
                     event.keyCode = keySequence[j];
                     event.keyLocation = keyLocation;
 
-
-                    // note that we don't check Window activation since we want to run in the background
-                    // and window activation is a player function
-					
-                    var actualTarget:Object;
-
-                    if (window)
+                    if (waitEvent == "focusIn" && keySequence[j] == Keyboard.TAB)
                     {
-                        actualTarget = context.stringToObject(window);
-                        actualTarget = actualTarget.stage.focus;
+                        // if we don't see a focusIn, focus is being set
+                        // asynchronously so we need to wait.
+                        currentRepeat = i;
+                        currentKey = j;
+                        gotFocusIn = false;
+                        root.addEventListener("focusIn", focusInHandler);
+                        inDispatchKey = true;
+                        dispatchKey(j, event);
+                        inDispatchKey = false;
+                        if (!gotFocusIn)
+                            break;
                     }
                     else
-                    {
-                        actualTarget = root.stage.focus;
-                        if (!actualTarget)
-                        {
-                            actualTarget = UnitTester.getFocus();
-                        }
-                    }
-					
-					// BACK, MENU, and SEARCH are buttons on mobile (Android) devices.  
-					// On Android devices right now, actualTarget is still null at this point.  Dispatching the event to the stage works.
-					// Using the constants in flash.ui.Keyboard will cause an error in a non-AIR runs, so the constants are also defined
-					// in this file, above.  There is risk here.
-					if (keySequence[j] == FLASH_UI_KEYBOARD_BACK ||
-						keySequence[j] == FLASH_UI_KEYBOARD_MENU ||
-						keySequence[j] == FLASH_UI_KEYBOARD_SEARCH){
-						
-						actualTarget = root.stage;
-					}
-					
-                    if (actualTarget)
-                    {
-                        var targetType:TypeInfo = context.getTypeInfo(actualTarget);
-                        var isTextView:Boolean = targetType.isAssignableTo("spark.components::RichEditableText");
-
-
-                        if (actualTarget is TextField)
-                        {
-                            if (event.charCode)
-                            {
-                                if (actualTarget.type == "input")
-                                {
-                                    actualTarget.replaceSelectedText(String.fromCharCode(event.charCode));
-                                    // actualTarget.dispatchEvent(new Event("change", true));
-                                    actualTarget.dispatchEvent(new Event("change"));
-                                }
-                            }
-                            else
-                            {
-                                if (actualTarget.selectable)
-                                    emulateKey(actualTarget, event);
-                            }
-                        }
-
-                        actualTarget.dispatchEvent(event);
-
-
-
-                        if (isTextView)
-                        {
-                            if (event.keyCode == Keyboard.DELETE ||
-
-                                event.keyCode == Keyboard.BACKSPACE ||
-
-                                event.keyCode == Keyboard.INSERT ||
-
-                                ctrlKey)
-
-                            {
-
-                                // don't send TEXT_INPUT event
-
-                            }
-
-                            else
-
-                            {
-
-                                var textEvent:TextEvent = new TextEvent(TextEvent.TEXT_INPUT, true, true);
-
-                                textEvent.text = String.fromCharCode(charSequence[j]);
-
-                                actualTarget.dispatchEvent(textEvent);
-
-                            }
-
-                        }
-
-                        if (keySequence[j] == Keyboard.TAB && type == "keyDown")
-                        {
-                            var fm:Object;
-                            var newTarget:Object = actualTarget;
-                            while (!fm && newTarget)
-                            {   
-                                if ("focusManager" in newTarget)
-                                    fm = newTarget["focusManager"];
-                                newTarget = newTarget.parent;
-                            }
-                            newTarget = null;
-                            if (fm)
-                            {
-                                try
-                                {
-                                    newTarget = fm.getNextFocusManagerComponent(shiftKey);
-                                }
-                                catch (e:Error)
-                                {
-                                    // ignore error thrown here.  Should only throw if the
-                                    // current FM became inactive as a result of dispatching
-                                    // the key event.  We don't really care too much about
-                                    // getting an accurate newTarget in this case because
-                                    // newTarget is often wrong since the Player is offering
-                                    // it up and the Player has that wonky algorithm for
-                                    // determining newTarget.   In theory, none of our code
-                                    // truly cares as long as it doesn't point to old focus
-                                    // object.
-                                }
-                            }
-
-                            actualTarget.dispatchEvent(new FocusEvent(FocusEvent.KEY_FOCUS_CHANGE, true, true, InteractiveObject(newTarget), shiftKey, Keyboard.TAB));
-                        }
-                        
-                        if (sendBoth)
-                        {
-                            event = new KeyboardEvent("keyUp", true, cancelable);
-                            event.ctrlKey = ctrlKey;
-                            event.shiftKey = shiftKey;
-                            event.charCode = charSequence[j];
-                            event.keyCode = keySequence[j];
-                            event.keyLocation = keyLocation;
-                            actualTarget.dispatchEvent(event);
-                        }
-                    }
-                    else
-                    {
-                        if (keySequence[j] == Keyboard.TAB && type == "keyDown")
-                        {
-
-                            var thisRoot:DisplayObject
-							
-                            // note that we don't check Window activation since we want to run in the background
-                            // and window activation is a player function
-                            if (window)
-                            {
-                                thisRoot = context.stringToObject(window).root;
-                            }
-                            else
-                                thisRoot = root;
-                            try
-                            {
-                                thisRoot.stage.dispatchEvent(new FocusEvent(FocusEvent.KEY_FOCUS_CHANGE, true, true, InteractiveObject(actualTarget), shiftKey, Keyboard.TAB));
-                            }
-                            catch(se2:SecurityError)
-                            {
-                                thisRoot.dispatchEvent(new FocusEvent(FocusEvent.KEY_FOCUS_CHANGE, true, true, InteractiveObject(actualTarget), shiftKey, Keyboard.TAB));
-                            }
-                        }						
-						
-                    }
+                        dispatchKey(j, event);
                 }
             }
         }
@@ -455,6 +318,206 @@ public class DispatchKeyEvent extends TestStep
         }
     }
 
+    private function focusInHandler(focusEvent:Event):void
+    {
+        gotFocusIn = true;        
+        root.removeEventListener("focusIn", focusInHandler);
+        if (inDispatchKey)
+            return;
+        
+        for (var i:int = currentRepeat; i < repeatCount; i++)
+        {
+            var m:int = charSequence.length;
+            for (var j:int = currentKey++; j < m; j++)
+            {
+                var event:KeyboardEvent = new KeyboardEvent(type, true, cancelable); // all keyboard events bubble
+                event.ctrlKey = ctrlKey;
+                event.shiftKey = shiftKey;
+                event.charCode = charSequence[j];
+                event.keyCode = keySequence[j];
+                event.keyLocation = keyLocation;
+                
+                if (waitEvent == "focusIn" && keySequence[j] == Keyboard.TAB)
+                {
+                    currentRepeat = i;
+                    currentKey = j;
+                    gotFocusIn = false;
+                    root.addEventListener("focusIn", focusInHandler);
+                    inDispatchKey = true;
+                    dispatchKey(j, event);
+                    inDispatchKey = false;
+                    if (!gotFocusIn)
+                        break;
+                }                
+                else
+                    dispatchKey(j, event);
+            }
+        }
+    }
+    
+    private function dispatchKey(index:int, event:KeyboardEvent):void
+    {
+        // note that we don't check Window activation since we want to run in the background
+        // and window activation is a player function
+        
+        var actualTarget:Object;
+        
+        if (window)
+        {
+            actualTarget = context.stringToObject(window);
+            actualTarget = actualTarget.stage.focus;
+        }
+        else
+        {
+            actualTarget = root.stage.focus;
+            if (!actualTarget)
+            {
+                actualTarget = UnitTester.getFocus();
+            }
+        }
+        
+        // BACK, MENU, and SEARCH are buttons on mobile (Android) devices.  
+        // On Android devices right now, actualTarget is still null at this point.  Dispatching the event to the stage works.
+        // Using the constants in flash.ui.Keyboard will cause an error in a non-AIR runs, so the constants are also defined
+        // in this file, above.  There is risk here.
+        if (keySequence[index] == FLASH_UI_KEYBOARD_BACK ||
+            keySequence[index] == FLASH_UI_KEYBOARD_MENU ||
+            keySequence[index] == FLASH_UI_KEYBOARD_SEARCH){
+            
+            actualTarget = root.stage;
+        }
+        
+        if (actualTarget)
+        {
+            var targetType:TypeInfo = context.getTypeInfo(actualTarget);
+            var isTextView:Boolean = targetType.isAssignableTo("spark.components::RichEditableText");
+            
+            
+            if (actualTarget is TextField)
+            {
+                if (event.charCode)
+                {
+                    if (actualTarget.type == "input")
+                    {
+                        actualTarget.replaceSelectedText(String.fromCharCode(event.charCode));
+                        // actualTarget.dispatchEvent(new Event("change", true));
+                        actualTarget.dispatchEvent(new Event("change"));
+                    }
+                }
+                else
+                {
+                    if (actualTarget.selectable)
+                        emulateKey(actualTarget, event);
+                }
+            }
+            
+            actualTarget.dispatchEvent(event);
+            
+            
+            
+            if (isTextView)
+            {
+                if (event.keyCode == Keyboard.DELETE ||
+                    
+                    event.keyCode == Keyboard.BACKSPACE ||
+                    
+                    event.keyCode == Keyboard.INSERT ||
+                    
+                    ctrlKey)
+                    
+                {
+                    
+                    // don't send TEXT_INPUT event
+                    
+                }
+                    
+                else
+                    
+                {
+                    
+                    var textEvent:TextEvent = new TextEvent(TextEvent.TEXT_INPUT, true, true);
+                    
+                    textEvent.text = String.fromCharCode(charSequence[index]);
+                    
+                    actualTarget.dispatchEvent(textEvent);
+                    
+                }
+                
+            }
+            
+            if (keySequence[index] == Keyboard.TAB && type == "keyDown")
+            {
+                var fm:Object;
+                var newTarget:Object = actualTarget;
+                while (!fm && newTarget)
+                {   
+                    if ("focusManager" in newTarget)
+                        fm = newTarget["focusManager"];
+                    newTarget = newTarget.parent;
+                }
+                newTarget = null;
+                if (fm)
+                {
+                    try
+                    {
+                        newTarget = fm.getNextFocusManagerComponent(shiftKey);
+                    }
+                    catch (e:Error)
+                    {
+                        // ignore error thrown here.  Should only throw if the
+                        // current FM became inactive as a result of dispatching
+                        // the key event.  We don't really care too much about
+                        // getting an accurate newTarget in this case because
+                        // newTarget is often wrong since the Player is offering
+                        // it up and the Player has that wonky algorithm for
+                        // determining newTarget.   In theory, none of our code
+                        // truly cares as long as it doesn't point to old focus
+                        // object.
+                    }
+                }
+                
+                actualTarget.dispatchEvent(new FocusEvent(FocusEvent.KEY_FOCUS_CHANGE, true, true, InteractiveObject(newTarget), shiftKey, Keyboard.TAB));
+            }
+            
+            if (sendBoth)
+            {
+                event = new KeyboardEvent("keyUp", true, cancelable);
+                event.ctrlKey = ctrlKey;
+                event.shiftKey = shiftKey;
+                event.charCode = charSequence[index];
+                event.keyCode = keySequence[index];
+                event.keyLocation = keyLocation;
+                actualTarget.dispatchEvent(event);
+            }
+        }
+        else
+        {
+            if (keySequence[index] == Keyboard.TAB && type == "keyDown")
+            {
+                
+                var thisRoot:DisplayObject
+                
+                // note that we don't check Window activation since we want to run in the background
+                // and window activation is a player function
+                if (window)
+                {
+                    thisRoot = context.stringToObject(window).root;
+                }
+                else
+                    thisRoot = root;
+                try
+                {
+                    thisRoot.stage.dispatchEvent(new FocusEvent(FocusEvent.KEY_FOCUS_CHANGE, true, true, InteractiveObject(actualTarget), shiftKey, Keyboard.TAB));
+                }
+                catch(se2:SecurityError)
+                {
+                    thisRoot.dispatchEvent(new FocusEvent(FocusEvent.KEY_FOCUS_CHANGE, true, true, InteractiveObject(actualTarget), shiftKey, Keyboard.TAB));
+                }
+            }						
+            
+        }
+    }
+    
     private var KeyCodeToCharCode:Object = {
                     8: 8,
                     13: 13,

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/37929a7f/mustella/as3/src/mustella/TestStep.as
----------------------------------------------------------------------
diff --git a/mustella/as3/src/mustella/TestStep.as b/mustella/as3/src/mustella/TestStep.as
index 645fddf..aa0a4e5 100644
--- a/mustella/as3/src/mustella/TestStep.as
+++ b/mustella/as3/src/mustella/TestStep.as
@@ -55,6 +55,7 @@ public class TestStep extends EventDispatcher
 			}
 			else
 			{
+                UnitTester.waitEvent = waitEvent;
 				actualTarget.addEventListener(waitEvent, waitEventHandler);
 				testCase.setExpirationTime(getTimer() + timeout);
 			}
@@ -76,6 +77,7 @@ public class TestStep extends EventDispatcher
 
 			if (waitEvent)
 			{
+                UnitTester.waitEvent = null;
 				actualTarget = context.stringToObject(waitTarget) as IEventDispatcher;
 				actualTarget.removeEventListener(waitEvent, waitEventHandler);
 				testCase.setExpirationTime(0);
@@ -91,6 +93,7 @@ public class TestStep extends EventDispatcher
 				testResult.doFail("Target " + waitTarget + " not found");
 				return true;
 			}
+            UnitTester.waitEvent = waitEvent;
 			actualTarget.addEventListener(waitEvent, waitEventHandler);
 			testCase.setExpirationTime(getTimer() + timeout);
 		}
@@ -155,6 +158,7 @@ public class TestStep extends EventDispatcher
 	{
 		if (waitEvent)
 		{
+            UnitTester.waitEvent = null;
 			var actualTarget:IEventDispatcher = context.stringToObject(waitTarget) as IEventDispatcher;
 			if (actualTarget)	// can be null if object killed during step
 				actualTarget.removeEventListener(waitEvent, waitEventHandler);

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/37929a7f/mustella/as3/src/mustella/UnitTester.as
----------------------------------------------------------------------
diff --git a/mustella/as3/src/mustella/UnitTester.as b/mustella/as3/src/mustella/UnitTester.as
index f812182..6e37a68 100644
--- a/mustella/as3/src/mustella/UnitTester.as
+++ b/mustella/as3/src/mustella/UnitTester.as
@@ -97,6 +97,11 @@ public class UnitTester extends EventDispatcher
 	 */
 	 public static var portNumber : Number=80;
 
+     /**
+      * waitEvent, if we're waiting for one.
+      */
+     public static var waitEvent : String;
+     
 	/**
 	 * additional wait before exit for coverage
 	 */
@@ -1081,6 +1086,12 @@ public class UnitTester extends EventDispatcher
 	 */
 	private static function focusBlockingHandler(event:FocusEvent):void
 	{
+        // yes, there is a chance that you've clicked on the test
+        // just as it is waiting for a focusIn event
+        // but I think that's the best we can do for now
+        if (waitEvent == "focusIn")
+            return;
+        
 		if (blockFocusEvents && event.relatedObject == null)
 		{
 			event.stopImmediatePropagation();


[03/17] git commit: [flex-sdk] [refs/heads/develop] - This test was broken by a change to ListBase.swf way back in January

Posted by ah...@apache.org.
This test was broken by a change to ListBase.swf way back in January


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/57b32982
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/57b32982
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/57b32982

Branch: refs/heads/develop
Commit: 57b329827e76ec07acbbd7eaa9b70444088a7a2d
Parents: 3883436
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 13 20:52:01 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:21 2013 -0700

----------------------------------------------------------------------
 .../List/events/ItemRendRETLabel_event_tester.mxml |   24 +++++++-------
 1 files changed, 12 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/57b32982/mustella/tests/gumbo/components/List/events/ItemRendRETLabel_event_tester.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/List/events/ItemRendRETLabel_event_tester.mxml b/mustella/tests/gumbo/components/List/events/ItemRendRETLabel_event_tester.mxml
index e085241..c2bd43c 100644
--- a/mustella/tests/gumbo/components/List/events/ItemRendRETLabel_event_tester.mxml
+++ b/mustella/tests/gumbo/components/List/events/ItemRendRETLabel_event_tester.mxml
@@ -53,7 +53,7 @@
                 <ResetComponent target="list4" className="comps.ItemRendRETLabelComp" waitEvent="updateComplete" />
 	    </setup>
             <body>
-                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list4" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list4" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list4" waitEvent="updateComplete"/>
@@ -70,7 +70,7 @@
             <body>
                 <SetProperty target="list4" propertyName="height" value="100" waitEvent="updateComplete" waitTarget="list4"/>
 
-                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[END]"  waitTarget="list4" waitEvent="change"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list4" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list4" waitEvent="updateComplete"/>
@@ -88,7 +88,7 @@
                 <SetProperty target="list4" propertyName="selectedIndex" value="0" waitEvent="updateComplete" waitTarget="list4"/>
                 <SetProperty target="list4" propertyName="height" value="100" waitEvent="updateComplete" waitTarget="list4"/>
 
-                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[END]"  waitTarget="list4" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[HOME]"  waitTarget="list4" waitEvent="change"/>
 		<DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list4" waitEvent="change"/>
@@ -108,7 +108,7 @@
                 <AssertPropertyValue target = "list4" propertyName="selectedIndex" value="-1" />
 
 
-                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[DOWN]"  waitTarget="list4" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[DOWN]"  waitTarget="list4" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[DOWN]"  waitTarget="list4" waitEvent="updateComplete"/>
@@ -126,7 +126,7 @@
             <body>
                 <SetProperty target="list4" propertyName="allowMultipleSelection" value="true" />
                 <SetProperty target="list4" propertyName="height" value="100" waitEvent="updateComplete" waitTarget="list4"/>
-                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list4" waitEvent="change"/>
                 <DispatchKeyEvent keys="[PAGE_UP]"  waitTarget="list4" waitEvent="change"/>
                 <DispatchKeyEvent keys="[DOWN]"  waitTarget="list4" waitEvent="updateComplete"/>
@@ -144,7 +144,7 @@
                <SetProperty target="list4" propertyName="allowMultipleSelection" value="true" />
                 <SetProperty target="list4" propertyName="height" value="100" waitEvent="updateComplete" waitTarget="list4"/>
 
-                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[END]"  waitTarget="list4" waitEvent="change"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list4" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list4" waitEvent="updateComplete"/>
@@ -162,7 +162,7 @@
                 <SetProperty target="list4" propertyName="width" value="100%" waitEvent="updateComplete" waitTarget="list4"/>
 	    </setup>
             <body>
-                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list4" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list4" waitEvent="updateComplete"/>
 
@@ -179,7 +179,7 @@
             <body>
                 <SetProperty target="list4" propertyName="width" value="100%" waitEvent="updateComplete" waitTarget="list4"/>
 		<SetProperty target="list4.dataGroup" propertyName="verticalScrollPosition" value="450"  waitEvent="propertyChange" />
-                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[END]"  waitTarget="list4" waitEvent="change"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list4" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list4" waitEvent="updateComplete"/>
@@ -197,7 +197,7 @@
                 <SetProperty target="list4" propertyName="selectedIndex" value="0" waitEvent="updateComplete" waitTarget="list4"/>
                 <SetProperty target="list4" propertyName="height" value="100" waitEvent="updateComplete" waitTarget="list4"/>
 
-                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[END]"  waitTarget="list4" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[HOME]"  waitTarget="list4" waitEvent="change"/>
 		<DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list4" waitEvent="change"/>
@@ -216,7 +216,7 @@
                 <SetProperty target="list4.dataGroup" propertyName="verticalScrollPosition" value="100"  waitEvent="propertyChange" />
 
 
-                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[DOWN]"  waitTarget="list4" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[DOWN]"  waitTarget="list4" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[DOWN]"  waitTarget="list4" waitEvent="updateComplete"/>
@@ -236,7 +236,7 @@
             <body>
                 <SetProperty target="list4" propertyName="allowMultipleSelection" value="true" />
                 <SetProperty target="list4" propertyName="height" value="100" waitEvent="updateComplete" waitTarget="list4"/>
-                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list4" waitEvent="change"/>
                 <DispatchKeyEvent keys="[PAGE_UP]"  waitTarget="list4" waitEvent="change"/>
                 <DispatchKeyEvent keys="[DOWN]"  waitTarget="list4" waitEvent="updateComplete"/>
@@ -255,7 +255,7 @@
 		<SetProperty target="list4" propertyName="width" value="100%" waitEvent="updateComplete" waitTarget="list4"/>
 	</setup>
             <body>
-                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB, TAB]" waitTarget="list4" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[END]"  waitTarget="list4" waitEvent="change"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list4" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list4" waitEvent="updateComplete"/>


[15/17] git commit: [flex-sdk] [refs/heads/develop] - fix more Grid tests broken since January

Posted by ah...@apache.org.
fix more Grid tests broken since January


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/b1b85c8f
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/b1b85c8f
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/b1b85c8f

Branch: refs/heads/develop
Commit: b1b85c8f085452c3facdddaccf1c2966289a3f24
Parents: 909d882
Author: Alex Harui <ah...@apache.org>
Authored: Wed May 15 11:55:28 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:36 2013 -0700

----------------------------------------------------------------------
 .../Grid/SWFs/components/customGrid_TypItem.mxml   |   11 +++++++++++
 .../components/customGrid_TypItem_ReqRowCol.mxml   |   11 +++++++++++
 2 files changed, 22 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/b1b85c8f/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid_TypItem.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid_TypItem.mxml b/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid_TypItem.mxml
index f517bcc..29f61f5 100644
--- a/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid_TypItem.mxml
+++ b/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid_TypItem.mxml
@@ -88,5 +88,16 @@
 			}
 		]]>	
 	</fx:Script>	
+    <s:gridView>
+        <fx:Component>
+            <s:GridView>
+                <s:GridLayer name="backgroundLayer"/>
+                <s:GridLayer name="selectionLayer"/>
+                <s:GridLayer name="editorIndicatorLayer"/>                            
+                <s:GridLayer name="rendererLayer"/>
+                <s:GridLayer name="overlayLayer"/>
+            </s:GridView>
+        </fx:Component>
+    </s:gridView>
 		
 </s:Grid>	

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/b1b85c8f/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid_TypItem_ReqRowCol.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid_TypItem_ReqRowCol.mxml b/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid_TypItem_ReqRowCol.mxml
index 4268ce1..cc32bbe 100644
--- a/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid_TypItem_ReqRowCol.mxml
+++ b/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid_TypItem_ReqRowCol.mxml
@@ -65,5 +65,16 @@
 		</s:ArrayCollection>
 				
 	</fx:Declarations>
+    <s:gridView>
+        <fx:Component>
+            <s:GridView>
+                <s:GridLayer name="backgroundLayer"/>
+                <s:GridLayer name="selectionLayer"/>
+                <s:GridLayer name="editorIndicatorLayer"/>                            
+                <s:GridLayer name="rendererLayer"/>
+                <s:GridLayer name="overlayLayer"/>
+            </s:GridView>
+        </fx:Component>
+    </s:gridView>
 		
 </s:Grid>	


[07/17] git commit: [flex-sdk] [refs/heads/develop] - wait for focusIn now that it is deferred

Posted by ah...@apache.org.
wait for focusIn now that it is deferred


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/875f71ce
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/875f71ce
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/875f71ce

Branch: refs/heads/develop
Commit: 875f71ce0791c6560d86d05fe11329ffa8e5284b
Parents: adaba14
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 13 23:50:09 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:24 2013 -0700

----------------------------------------------------------------------
 .../TextArea/Methods/TextArea_Methods_tester.mxml  |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/875f71ce/mustella/tests/gumbo/components/TextArea/Methods/TextArea_Methods_tester.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/TextArea/Methods/TextArea_Methods_tester.mxml b/mustella/tests/gumbo/components/TextArea/Methods/TextArea_Methods_tester.mxml
index bdde372..99f4f7f 100644
--- a/mustella/tests/gumbo/components/TextArea/Methods/TextArea_Methods_tester.mxml
+++ b/mustella/tests/gumbo/components/TextArea/Methods/TextArea_Methods_tester.mxml
@@ -422,7 +422,8 @@
 		<TestCase testID="Gumbo_TextArea_insertText_method_default" description="..." keywords="[TextArea, insertText, method]">
 			<setup>
 				<ResetComponent target="textArea" className="spark.components.TextArea" waitTarget="textArea" waitEvent="updateComplete" />
-				<RunCode code="application.textArea.setFocus();application.textArea.insertText('Silver Musican');" waitTarget="textArea" waitEvent="updateComplete" />
+				<RunCode code="application.textArea.setFocus()" waitTarget="textArea" waitEvent="focusIn" />
+                <RunCode code="application.textArea.insertText('Silver Musican');" waitTarget="textArea" waitEvent="updateComplete" />
 				<SetProperty target="textArea" propertyName="height" value="151" waitTarget="textArea" waitEvent="updateComplete" />
 			</setup>
 			<body>


[14/17] git commit: [flex-sdk] [refs/heads/develop] - adjust test now that localeChain throws if locale not loaded

Posted by ah...@apache.org.
adjust test now that localeChain throws if locale not loaded


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/909d8824
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/909d8824
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/909d8824

Branch: refs/heads/develop
Commit: 909d88241b312396f0b870dd8cdbb420d282effe
Parents: 38709d3
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 14 23:41:09 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:35 2013 -0700

----------------------------------------------------------------------
 .../Methods/RTL_Methods_1Locale_ReadWrite.mxml     |   33 +++++++++++++-
 1 files changed, 30 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/909d8824/mustella/tests/RuntimeLocalization/RTL_SparkSkin/Methods/RTL_Methods_1Locale_ReadWrite.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/RuntimeLocalization/RTL_SparkSkin/Methods/RTL_Methods_1Locale_ReadWrite.mxml b/mustella/tests/RuntimeLocalization/RTL_SparkSkin/Methods/RTL_Methods_1Locale_ReadWrite.mxml
index 36361ef..815490c 100644
--- a/mustella/tests/RuntimeLocalization/RTL_SparkSkin/Methods/RTL_Methods_1Locale_ReadWrite.mxml
+++ b/mustella/tests/RuntimeLocalization/RTL_SparkSkin/Methods/RTL_Methods_1Locale_ReadWrite.mxml
@@ -44,6 +44,9 @@
         public var ed1:IEventDispatcher;
         public var ed2:IEventDispatcher;
         public var ed3:IEventDispatcher;
+        public var ed4:IEventDispatcher;
+        public var ed5:IEventDispatcher;
+        public var ed6:IEventDispatcher;
 
         private function clearAllNonFrenchData():void{            
             
@@ -76,6 +79,21 @@
                     ed3.addEventListener(ResourceEvent.ERROR, handleErrorEvent);
                     ed3.addEventListener(ResourceEvent.COMPLETE, handleCompleteEvent);
                     break;
+                case 4:
+                    ed4 = ResourceManager.getInstance().loadResourceModule('Assets/bundles/custom/resMod_enUS_bundle1_001.swf');
+                    ed4.addEventListener(ResourceEvent.ERROR, handleErrorEvent);
+                    ed4.addEventListener(ResourceEvent.COMPLETE, handleCompleteEvent);
+                    break;
+                case 5:
+                    ed5 = ResourceManager.getInstance().loadResourceModule('Assets/bundles/custom/resMod_enUS_bundle1_002.swf');
+                    ed5.addEventListener(ResourceEvent.ERROR, handleErrorEvent);
+                    ed5.addEventListener(ResourceEvent.COMPLETE, handleCompleteEvent);
+                    break;
+                case 6:
+                    ed6 = ResourceManager.getInstance().loadResourceModule('Assets/bundles/custom/resMod_enUS_bundle1_003.swf');
+                    ed6.addEventListener(ResourceEvent.ERROR, handleErrorEvent);
+                    ed6.addEventListener(ResourceEvent.COMPLETE, handleCompleteEvent);
+                    break;
             }
         }
 
@@ -95,10 +113,13 @@
                 <AssertMethodValue method="value=ResourceManager.getInstance().getLocales()[0]" value="fr_FR" />
                 <AssertMethodValue method="value=ResourceManager.getInstance().localeChain.length" value="1" />
                 <AssertMethodValue method="value=ResourceManager.getInstance().localeChain[0]" value="fr_FR" />
-                <RunCode code="ResourceManager.getInstance().localeChain=['en_US','fr_FR']" /> 
                 <AssertPropertyValue target="lbl1" propertyName="text" value="French View Source" />
             </setup>
             <body>
+                <!-- load a single en_US bundle so we can add en_US to the locale chain -->
+                <RunCode code="setUpEventDispatchers(4)" />
+                <AssertEvent target="script:ed4" eventName="complete" eventClass="mx.events::ResourceEvent" />
+                <RunCode code="ResourceManager.getInstance().localeChain=['en_US','fr_FR']" /> 
                 <RunCode code="setUpEventDispatchers(1)" />
                 <AssertEvent target="script:ed1" eventName="complete" eventClass="mx.events::ResourceEvent" />
                 <AssertPropertyValue target="lbl1" propertyName="text" value="View Source" />
@@ -112,10 +133,13 @@
                 <AssertMethodValue method="value=ResourceManager.getInstance().getLocales()[0]" value="fr_FR" />
                 <AssertMethodValue method="value=ResourceManager.getInstance().localeChain.length" value="1" />
                 <AssertMethodValue method="value=ResourceManager.getInstance().localeChain[0]" value="fr_FR" />
-                <RunCode code="ResourceManager.getInstance().localeChain=['en_US','fr_FR']" /> 
                 <AssertPropertyValue target="lbl1" propertyName="text" value="French View Source" />
             </setup>
             <body>
+                <!-- load a single en_US bundle so we can add en_US to the locale chain -->
+                <RunCode code="setUpEventDispatchers(5)" />
+                <AssertEvent target="script:ed5" eventName="complete" eventClass="mx.events::ResourceEvent" />
+                <RunCode code="ResourceManager.getInstance().localeChain=['en_US','fr_FR']" /> 
                 <RunCode code="setUpEventDispatchers(2)" />
                 <AssertEvent target="script:ed2" eventName="complete" eventClass="mx.events::ResourceEvent" />
                 <AssertPropertyValue target="lbl1" propertyName="text" value="View Source" />
@@ -129,10 +153,13 @@
                 <AssertMethodValue method="value=ResourceManager.getInstance().getLocales()[0]" value="fr_FR" />
                 <AssertMethodValue method="value=ResourceManager.getInstance().localeChain.length" value="1" />
                 <AssertMethodValue method="value=ResourceManager.getInstance().localeChain[0]" value="fr_FR" />
-                <RunCode code="ResourceManager.getInstance().localeChain=['en_US','fr_FR']" /> 
                 <AssertPropertyValue target="lbl1" propertyName="text" value="French View Source" />
             </setup>
             <body>
+                <!-- load a single en_US bundle so we can add en_US to the locale chain -->
+                <RunCode code="setUpEventDispatchers(6)" />
+                <AssertEvent target="script:ed6" eventName="complete" eventClass="mx.events::ResourceEvent" />
+                <RunCode code="ResourceManager.getInstance().localeChain=['en_US','fr_FR']" /> 
                 <RunCode code="setUpEventDispatchers(3)" />
                 <AssertEvent target="script:ed3" eventName="complete" eventClass="mx.events::ResourceEvent" />
                 <AssertPropertyValue target="lbl1" propertyName="text" value="French View Source" />


[09/17] git commit: [flex-sdk] [refs/heads/develop] - New baseline now that NumericStepper won't show NaN

Posted by ah...@apache.org.
New baseline now that NumericStepper won't show NaN


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/7947c899
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/7947c899
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/7947c899

Branch: refs/heads/develop
Commit: 7947c899963c722a4322db9e533a6a398c0f506d
Parents: e2616b7
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 14 15:52:39 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:26 2013 -0700

----------------------------------------------------------------------
 .../baselines/MXDGIR_Integration_newRangeIR.png    |  Bin 14687 -> 14014 bytes
 1 files changed, 0 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/7947c899/mustella/tests/gumbo/components/MXItemRenderer/integration/baselines/MXDGIR_Integration_newRangeIR.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/MXItemRenderer/integration/baselines/MXDGIR_Integration_newRangeIR.png b/mustella/tests/gumbo/components/MXItemRenderer/integration/baselines/MXDGIR_Integration_newRangeIR.png
index 7eff1f1..9e1be8b 100644
Binary files a/mustella/tests/gumbo/components/MXItemRenderer/integration/baselines/MXDGIR_Integration_newRangeIR.png and b/mustella/tests/gumbo/components/MXItemRenderer/integration/baselines/MXDGIR_Integration_newRangeIR.png differ


[06/17] git commit: [flex-sdk] [refs/heads/develop] - Need to wait for focusIn now that it is deferred via callLater

Posted by ah...@apache.org.
Need to wait for focusIn now that it is deferred via callLater


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/e659a1e2
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/e659a1e2
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/e659a1e2

Branch: refs/heads/develop
Commit: e659a1e2cad95f8e81c0dc0bec6ceee0c01df701
Parents: 875f71c
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 14 15:51:25 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:24 2013 -0700

----------------------------------------------------------------------
 .../Properties/TitleWindow_Properties.mxml         |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/e659a1e2/mustella/tests/gumbo/components/TitleWindow/Properties/TitleWindow_Properties.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/TitleWindow/Properties/TitleWindow_Properties.mxml b/mustella/tests/gumbo/components/TitleWindow/Properties/TitleWindow_Properties.mxml
index 4bf2d7d..4d70430 100644
--- a/mustella/tests/gumbo/components/TitleWindow/Properties/TitleWindow_Properties.mxml
+++ b/mustella/tests/gumbo/components/TitleWindow/Properties/TitleWindow_Properties.mxml
@@ -390,11 +390,11 @@
             <body>			
             	<SetProperty target="twObject" propertyName="enabled" value="true" waitEvent="updateComplete" waitTarget="twObject"/>
             	<Pause timeout="20"/>
-            	<DispatchMouseClickEvent target="twObject.ta1" localX="2" localY="2" />
+            	<DispatchMouseClickEvent target="twObject.ta1" localX="2" localY="2" waitEvent="focusIn"/>
             	<DispatchKeyEvent char="boogie" waitTarget="twObject.ta1" waitEvent="change"/>
             	<AssertPropertyValue target="twObject.ta1" propertyName="text" value="boogieHalo TextArea"/> 
             	<Pause timeout="20"/>
-            	<DispatchMouseClickEvent target="twObject.ta2" localX="2" localY="2" />
+            	<DispatchMouseClickEvent target="twObject.ta2" localX="2" localY="2" waitEvent="focusIn"/>
             	<DispatchKeyEvent char="boogie2" waitTarget="twObject.ta2" waitEvent="change"/>
 		<AssertPropertyValue target="twObject.ta2" propertyName="text" value="boogie2Spark TextArea"/>  
 		<Pause timeout="20"/>


[17/17] git commit: [flex-sdk] [refs/heads/develop] - didn't embed correctly the first time

Posted by ah...@apache.org.
didn't embed correctly the first time


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/35bb3da6
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/35bb3da6
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/35bb3da6

Branch: refs/heads/develop
Commit: 35bb3da643262455197cd3f9b11714e5a80530ee
Parents: 3aefa7c
Author: Alex Harui <ah...@apache.org>
Authored: Wed May 15 11:56:53 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:39 2013 -0700

----------------------------------------------------------------------
 .../baselines/calloutbutton_afterAfter.png         |  Bin 39427 -> 38183 bytes
 .../baselines/calloutbutton_afterAuto.png          |  Bin 38741 -> 37281 bytes
 .../baselines/calloutbutton_afterBefore.png        |  Bin 39893 -> 38316 bytes
 .../baselines/calloutbutton_afterEnd.png           |  Bin 38867 -> 37535 bytes
 .../baselines/calloutbutton_afterMiddle.png        |  Bin 38482 -> 37718 bytes
 .../baselines/calloutbutton_afterStart.png         |  Bin 38211 -> 37075 bytes
 .../baselines/calloutbutton_autoAfter.png          |  Bin 39014 -> 37907 bytes
 .../baselines/calloutbutton_autoAuto.png           |  Bin 39848 -> 38777 bytes
 .../baselines/calloutbutton_autoBefore.png         |  Bin 39768 -> 39023 bytes
 .../Properties/baselines/calloutbutton_autoEnd.png |  Bin 39128 -> 37898 bytes
 .../baselines/calloutbutton_autoMiddle.png         |  Bin 39117 -> 38129 bytes
 .../baselines/calloutbutton_autoStart.png          |  Bin 37979 -> 37190 bytes
 .../baselines/calloutbutton_beforeAfter.png        |  Bin 39589 -> 38714 bytes
 .../baselines/calloutbutton_beforeAuto.png         |  Bin 39432 -> 38615 bytes
 .../baselines/calloutbutton_beforeBefore.png       |  Bin 40115 -> 40057 bytes
 .../baselines/calloutbutton_beforeEnd.png          |  Bin 39629 -> 38917 bytes
 .../baselines/calloutbutton_beforeMiddle.png       |  Bin 38971 -> 38824 bytes
 .../baselines/calloutbutton_beforeStart.png        |  Bin 38431 -> 38029 bytes
 .../Properties/baselines/calloutbutton_click.png   |  Bin 38259 -> 37180 bytes
 .../baselines/calloutbutton_endAfter.png           |  Bin 38793 -> 38438 bytes
 .../Properties/baselines/calloutbutton_endAuto.png |  Bin 39932 -> 39112 bytes
 .../baselines/calloutbutton_endBefore.png          |  Bin 40248 -> 39516 bytes
 .../Properties/baselines/calloutbutton_endEnd.png  |  Bin 38792 -> 38635 bytes
 .../baselines/calloutbutton_endMiddle.png          |  Bin 38452 -> 38287 bytes
 .../baselines/calloutbutton_endStart.png           |  Bin 38030 -> 37973 bytes
 .../baselines/calloutbutton_middleAfter.png        |  Bin 39079 -> 39127 bytes
 .../baselines/calloutbutton_middleAuto.png         |  Bin 39643 -> 39812 bytes
 .../baselines/calloutbutton_middleBefore.png       |  Bin 39947 -> 40387 bytes
 .../baselines/calloutbutton_middleEnd.png          |  Bin 40390 -> 40878 bytes
 .../baselines/calloutbutton_middleMiddle.png       |  Bin 38673 -> 39428 bytes
 .../baselines/calloutbutton_middleStart.png        |  Bin 38728 -> 39245 bytes
 .../Properties/baselines/calloutbutton_over.png    |  Bin 38913 -> 36768 bytes
 .../baselines/calloutbutton_startAfter.png         |  Bin 38858 -> 39727 bytes
 .../baselines/calloutbutton_startAuto.png          |  Bin 39525 -> 40486 bytes
 .../baselines/calloutbutton_startBefore.png        |  Bin 39634 -> 40440 bytes
 .../baselines/calloutbutton_startEnd.png           |  Bin 38358 -> 39778 bytes
 .../baselines/calloutbutton_startMiddle.png        |  Bin 38235 -> 39370 bytes
 .../baselines/calloutbutton_startStart.png         |  Bin 37608 -> 38791 bytes
 .../CallOutButton/SWFs/CallOutButton_Main.mxml     |    4 ++++
 39 files changed, 4 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAfter.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAfter.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAfter.png
index 9d9ca98..b4526d4 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAfter.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAfter.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAuto.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAuto.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAuto.png
index 051be29..9782aa6 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAuto.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAuto.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterBefore.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterBefore.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterBefore.png
index 286951f..ffdf10c 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterBefore.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterBefore.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterEnd.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterEnd.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterEnd.png
index b3f86fb..e08bc45 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterEnd.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterEnd.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterMiddle.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterMiddle.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterMiddle.png
index c403c91..2c0e580 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterMiddle.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterMiddle.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterStart.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterStart.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterStart.png
index ceb0570..2bf9bf4 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterStart.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterStart.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAfter.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAfter.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAfter.png
index e32577d..b142571 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAfter.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAfter.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAuto.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAuto.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAuto.png
index c3857a3..d822cf1 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAuto.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAuto.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoBefore.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoBefore.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoBefore.png
index 0070737..71fce05 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoBefore.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoBefore.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoEnd.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoEnd.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoEnd.png
index 5a44c0d..852bf93 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoEnd.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoEnd.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoMiddle.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoMiddle.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoMiddle.png
index 498b5e6..7145cf4 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoMiddle.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoMiddle.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoStart.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoStart.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoStart.png
index 3659e29..a17e5b8 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoStart.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoStart.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAfter.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAfter.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAfter.png
index 10f9beb..2049e82 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAfter.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAfter.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAuto.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAuto.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAuto.png
index 56e8e74..724ae2f 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAuto.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAuto.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeBefore.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeBefore.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeBefore.png
index 68bb31a..89fb01f 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeBefore.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeBefore.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeEnd.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeEnd.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeEnd.png
index 83b7a25..efe6273 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeEnd.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeEnd.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeMiddle.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeMiddle.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeMiddle.png
index 700f5fe..b4f7627 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeMiddle.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeMiddle.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeStart.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeStart.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeStart.png
index aee71f3..cf5d771 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeStart.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeStart.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_click.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_click.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_click.png
index 653e32d..7f6e0da 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_click.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_click.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAfter.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAfter.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAfter.png
index d83655e..08895f0 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAfter.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAfter.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAuto.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAuto.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAuto.png
index 892d1eb..194064b 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAuto.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAuto.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endBefore.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endBefore.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endBefore.png
index 87ec4aa..a473f11 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endBefore.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endBefore.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endEnd.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endEnd.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endEnd.png
index bdeb178..7258a74 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endEnd.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endEnd.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endMiddle.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endMiddle.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endMiddle.png
index b00cdcf..0e9c07a 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endMiddle.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endMiddle.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endStart.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endStart.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endStart.png
index 1ad5cfe..b018ba5 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endStart.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endStart.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAfter.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAfter.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAfter.png
index 6a1de50..5a60f34 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAfter.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAfter.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAuto.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAuto.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAuto.png
index 50b590b..c39abbd 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAuto.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAuto.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleBefore.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleBefore.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleBefore.png
index a9c69b7..d07e601 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleBefore.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleBefore.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleEnd.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleEnd.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleEnd.png
index 067f2e8..072a90d 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleEnd.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleEnd.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleMiddle.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleMiddle.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleMiddle.png
index bccbafb..f626cf4 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleMiddle.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleMiddle.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleStart.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleStart.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleStart.png
index 7448e27..23949ab2 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleStart.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleStart.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_over.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_over.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_over.png
index 2664967..a45962a 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_over.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_over.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAfter.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAfter.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAfter.png
index 12ed70a..92cf906 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAfter.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAfter.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAuto.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAuto.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAuto.png
index d6f3dc4..96ce911 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAuto.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAuto.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startBefore.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startBefore.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startBefore.png
index db2c630..57f96be 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startBefore.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startBefore.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startEnd.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startEnd.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startEnd.png
index 51beda0..35453fe 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startEnd.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startEnd.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startMiddle.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startMiddle.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startMiddle.png
index 869eac2..2bc57c6 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startMiddle.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startMiddle.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startStart.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startStart.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startStart.png
index da39473..29a79c3 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startStart.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startStart.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35bb3da6/mustella/tests/experimental/spark/components/CallOutButton/SWFs/CallOutButton_Main.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/SWFs/CallOutButton_Main.mxml b/mustella/tests/experimental/spark/components/CallOutButton/SWFs/CallOutButton_Main.mxml
index 973c21e..aacd2aa 100644
--- a/mustella/tests/experimental/spark/components/CallOutButton/SWFs/CallOutButton_Main.mxml
+++ b/mustella/tests/experimental/spark/components/CallOutButton/SWFs/CallOutButton_Main.mxml
@@ -53,6 +53,10 @@
             fontFamily: EmbeddedVerdana;
             embedAsCFF: true;
         }        
+            
+        global {
+            fontFamily: EmbeddedVerdana;
+        }
     </fx:Style>
     
     <fx:Declarations>


[08/17] git commit: [flex-sdk] [refs/heads/develop] - Need to wait for focusIn now that it is deferred via callLater

Posted by ah...@apache.org.
Need to wait for focusIn now that it is deferred via callLater


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/e2616b7d
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/e2616b7d
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/e2616b7d

Branch: refs/heads/develop
Commit: e2616b7d593f0f0f3a91e5f8c11af032ec268e38
Parents: e659a1e
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 14 15:51:55 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:26 2013 -0700

----------------------------------------------------------------------
 .../TabBar/Properties/TabBar_properties.mxml       |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/e2616b7d/mustella/tests/gumbo/components/TabBar/Properties/TabBar_properties.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/TabBar/Properties/TabBar_properties.mxml b/mustella/tests/gumbo/components/TabBar/Properties/TabBar_properties.mxml
index 5caeb69..d0598c6 100644
--- a/mustella/tests/gumbo/components/TabBar/Properties/TabBar_properties.mxml
+++ b/mustella/tests/gumbo/components/TabBar/Properties/TabBar_properties.mxml
@@ -162,10 +162,10 @@ enabled
          <RunCode code="FlexGlobals.topLevelApplication.setDataProvider(FlexGlobals.topLevelApplication.vgroup1.tabBarFocusTest1, 1)" waitTarget="vgroup1.tabBarFocusTest1" waitEvent="updateComplete" />
     </setup>
     <body>
-        <RunCode code="FlexGlobals.topLevelApplication.vgroup1.textArea1.setFocus()"/>
+        <RunCode code="FlexGlobals.topLevelApplication.vgroup1.textArea1.setFocus()" waitEvent="focusIn" waitTarget="vgroup1.textArea1"/>
         <WaitForEvent numExpectedEvents="-1" eventName="updateComplete" target="vgroup1.textArea1" timeout="2000" />
         <DispatchKeyEvent keys="[TAB,TAB,TAB]"/>
-        <RunCode code="FlexGlobals.topLevelApplication.vgroup1.buttonBar1.setFocus()" />
+        <RunCode code="FlexGlobals.topLevelApplication.vgroup1.buttonBar1.setFocus()" waitEvent="focusIn" waitTarget="vgroup1.buttonBar1" />
   	<WaitForEvent numExpectedEvents="-1" eventName="updateComplete" target="vgroup1.buttonBar1" timeout="2000" />
       
         <DispatchKeyEvent keys="[RIGHT,RIGHT,SPACE]" waitEvent="focusIn" waitTarget="vgroup1.buttonBar1" />


[12/17] git commit: [flex-sdk] [refs/heads/develop] - Need more of truncate code from UITextField

Posted by ah...@apache.org.
Need more of truncate code from UITextField


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/5b98b0c0
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/5b98b0c0
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/5b98b0c0

Branch: refs/heads/develop
Commit: 5b98b0c0bb5a40e47773b5590365db46dacb0944
Parents: 2f916c8
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 14 15:55:19 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:31 2013 -0700

----------------------------------------------------------------------
 .../projects/spark/src/mx/core/UIFTETextField.as   |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5b98b0c0/frameworks/projects/spark/src/mx/core/UIFTETextField.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/mx/core/UIFTETextField.as b/frameworks/projects/spark/src/mx/core/UIFTETextField.as
index ad200ee..bdef1b2 100644
--- a/frameworks/projects/spark/src/mx/core/UIFTETextField.as
+++ b/frameworks/projects/spark/src/mx/core/UIFTETextField.as
@@ -2489,6 +2489,20 @@ public class UIFTETextField extends FTETextField
                 super.text = s + truncationIndicator;
             }
             
+            var otl:int = originalText.length;
+            var t:String = s;
+            while (t.length < otl)
+            {
+                t = originalText.slice(0, t.length + 1);
+                super.text = t + truncationIndicator;
+                if (textWidth + TEXT_WIDTH_PADDING <= w)
+                    s = t;
+                else
+                    break;
+            } 
+            if (s.length > 0)
+                super.text = s + truncationIndicator;
+            
             return true;
         }
 


[13/17] git commit: [flex-sdk] [refs/heads/develop] - Fix Grid failures

Posted by ah...@apache.org.
Fix Grid failures


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/38709d30
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/38709d30
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/38709d30

Branch: refs/heads/develop
Commit: 38709d30400dcf6e218d347bc277e74598ea3f38
Parents: 5b98b0c
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 14 20:23:56 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:34 2013 -0700

----------------------------------------------------------------------
 .../Grid/SWFs/components/customGrid.mxml           |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/38709d30/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid.mxml b/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid.mxml
index 4c6cd02..a43dc41 100644
--- a/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid.mxml
+++ b/mustella/tests/gumbo/components/Grid/SWFs/components/customGrid.mxml
@@ -77,5 +77,16 @@
 										
 		]]>
 	</fx:Script>
-				
+    <s:gridView>
+        <fx:Component>
+            <s:GridView>
+                <s:GridLayer name="backgroundLayer"/>
+                <s:GridLayer name="selectionLayer"/>
+                <s:GridLayer name="editorIndicatorLayer"/>                            
+                <s:GridLayer name="rendererLayer"/>
+                <s:GridLayer name="overlayLayer"/>
+            </s:GridView>
+        </fx:Component>
+    </s:gridView>
+			
 </s:Grid>	


[10/17] git commit: [flex-sdk] [refs/heads/develop] - New baselines now that Button doesn't visually modify icon anymore

Posted by ah...@apache.org.
New baselines now that Button doesn't visually modify icon anymore


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/5493a371
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/5493a371
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/5493a371

Branch: refs/heads/develop
Commit: 5493a371e6e42b62326a63a6680da9bfe483bf3d
Parents: 7947c89
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 14 15:53:33 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:27 2013 -0700

----------------------------------------------------------------------
 .../styles/baselines/button_icon_as_childTag.png   |  Bin 1772 -> 2166 bytes
 .../baselines/button_icon_chromeColor_down.png     |  Bin 981 -> 1375 bytes
 .../baselines/button_icon_chromeColor_up.png       |  Bin 1097 -> 1477 bytes
 .../button_icon_with_chromeColor_disabled.png      |  Bin 860 -> 661 bytes
 ...button_icon_with_label_chromeColor_disabled.png |  Bin 1305 -> 1108 bytes
 .../button_icon_with_label_chromeColor_down.png    |  Bin 1342 -> 1743 bytes
 .../button_icon_with_label_chromeColor_up.png      |  Bin 1600 -> 1976 bytes
 7 files changed, 0 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5493a371/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_as_childTag.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_as_childTag.png b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_as_childTag.png
index df7e64d..ae5c5e7 100644
Binary files a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_as_childTag.png and b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_as_childTag.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5493a371/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_chromeColor_down.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_chromeColor_down.png b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_chromeColor_down.png
index 5412a75..1a1cd86 100644
Binary files a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_chromeColor_down.png and b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_chromeColor_down.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5493a371/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_chromeColor_up.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_chromeColor_up.png b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_chromeColor_up.png
index d364dd7..29a7b6f 100644
Binary files a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_chromeColor_up.png and b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_chromeColor_up.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5493a371/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_chromeColor_disabled.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_chromeColor_disabled.png b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_chromeColor_disabled.png
index 33686ff..fd668d6 100644
Binary files a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_chromeColor_disabled.png and b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_chromeColor_disabled.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5493a371/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_disabled.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_disabled.png b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_disabled.png
index 92f49cb..1033c23 100644
Binary files a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_disabled.png and b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_disabled.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5493a371/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_down.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_down.png b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_down.png
index 3b5cf9d..01771ad 100644
Binary files a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_down.png and b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_down.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5493a371/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_up.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_up.png b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_up.png
index 3a63360..67e5f97 100644
Binary files a/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_up.png and b/mustella/tests/gumbo/components/Button/styles/baselines/button_icon_with_label_chromeColor_up.png differ


[05/17] git commit: [flex-sdk] [refs/heads/develop] - These tests also broke due to a change in in ListBasic.mxml back in January

Posted by ah...@apache.org.
These tests also broke due to a change in in ListBasic.mxml back in January


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/adaba14c
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/adaba14c
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/adaba14c

Branch: refs/heads/develop
Commit: adaba14cdd55c047f4cc8f79af3a16b4fa2efebc
Parents: b56dc4f
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 13 23:49:12 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:23 2013 -0700

----------------------------------------------------------------------
 .../List/events/ItemRendRET_event_tester.mxml      |   24 +++++++-------
 1 files changed, 12 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/adaba14c/mustella/tests/gumbo/components/List/events/ItemRendRET_event_tester.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/List/events/ItemRendRET_event_tester.mxml b/mustella/tests/gumbo/components/List/events/ItemRendRET_event_tester.mxml
index e19cd29..4b1d55e 100644
--- a/mustella/tests/gumbo/components/List/events/ItemRendRET_event_tester.mxml
+++ b/mustella/tests/gumbo/components/List/events/ItemRendRET_event_tester.mxml
@@ -53,7 +53,7 @@
                 <ResetComponent target="list3" className="comps.ItemRendRETComp" waitEvent="updateComplete" />
 	    </setup>
             <body>
-                <DispatchKeyEvent keys="[TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list3" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list3" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list3" waitEvent="updateComplete"/>
@@ -69,7 +69,7 @@
             <body>
                 <SetProperty target="list3" propertyName="height" value="100" waitEvent="updateComplete" waitTarget="list3"/>
 
-                <DispatchKeyEvent keys="[TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[END]"  waitTarget="list3" waitEvent="change"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list3" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list3" waitEvent="updateComplete"/>
@@ -87,7 +87,7 @@
                 <SetProperty target="list3" propertyName="selectedIndex" value="0" waitEvent="updateComplete" waitTarget="list3"/>
                 <SetProperty target="list3" propertyName="height" value="100" waitEvent="updateComplete" waitTarget="list3"/>
 
-                <DispatchKeyEvent keys="[TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[END]"  waitTarget="list3" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[HOME]"  waitTarget="list3" waitEvent="change"/>
 		<DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list3" waitEvent="change"/>
@@ -107,7 +107,7 @@
                 <AssertPropertyValue target = "list3" propertyName="selectedIndex" value="-1" />
 
 
-                <DispatchKeyEvent keys="[TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[DOWN]"  waitTarget="list3" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[DOWN]"  waitTarget="list3" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[DOWN]"  waitTarget="list3" waitEvent="updateComplete"/>
@@ -127,7 +127,7 @@
             <body>
                 <SetProperty target="list3" propertyName="allowMultipleSelection" value="true" />
                 <SetProperty target="list3" propertyName="height" value="100" waitEvent="updateComplete" waitTarget="list3"/>
-                <DispatchKeyEvent keys="[TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list3" waitEvent="change"/>
                 <DispatchKeyEvent keys="[PAGE_UP]"  waitTarget="list3" waitEvent="change"/>
                 <DispatchKeyEvent keys="[DOWN]"  waitTarget="list3" waitEvent="updateComplete"/>
@@ -147,7 +147,7 @@
                <SetProperty target="list3" propertyName="allowMultipleSelection" value="true" />
                 <SetProperty target="list3" propertyName="height" value="100" waitEvent="updateComplete" waitTarget="list3"/>
 
-                <DispatchKeyEvent keys="[TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[END]"  waitTarget="list3" waitEvent="change"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list3" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list3" waitEvent="updateComplete"/>
@@ -165,7 +165,7 @@
                 <SetProperty target="list3" propertyName="width" value="100%" waitEvent="updateComplete" waitTarget="list3"/>
 	    </setup>
             <body>
-                <DispatchKeyEvent keys="[TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list3" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[PAGE_UP]"  waitTarget="list3" waitEvent="updateComplete"/>
 
@@ -181,7 +181,7 @@
             <body>
                 <SetProperty target="list3" propertyName="width" value="100%" waitEvent="updateComplete" waitTarget="list3"/>
 		<SetProperty target="list3.dataGroup" propertyName="verticalScrollPosition" value="450"  waitEvent="propertyChange" />
-                <DispatchKeyEvent keys="[TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[END]"  waitTarget="list3" waitEvent="change"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list3" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list3" waitEvent="updateComplete"/>
@@ -199,7 +199,7 @@
                 <SetProperty target="list3" propertyName="selectedIndex" value="0" waitEvent="updateComplete" waitTarget="list3"/>
                 <SetProperty target="list3" propertyName="height" value="100" waitEvent="updateComplete" waitTarget="list3"/>
 
-                <DispatchKeyEvent keys="[TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[END]"  waitTarget="list3" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[HOME]"  waitTarget="list3" waitEvent="change"/>
 		<DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list3" waitEvent="change"/>
@@ -218,7 +218,7 @@
                 <SetProperty target="list3.dataGroup" propertyName="verticalScrollPosition" value="100"  waitEvent="propertyChange" />
 
 
-                <DispatchKeyEvent keys="[TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[DOWN,DOWN,DOWN,DOWN,DOWN,DOWN,DOWN]"  waitTarget="list3" waitEvent="updateComplete"/>
                 <CompareBitmap numColorVariances="30" ignoreMaxColorVariance="true" url="../events/baselines/$testID.png" target="list3.scroller.verticalScrollBar" />
 
@@ -233,7 +233,7 @@
             <body>
                 <SetProperty target="list3" propertyName="allowMultipleSelection" value="true" />
                 <SetProperty target="list3" propertyName="height" value="100" waitEvent="updateComplete" waitTarget="list3"/>
-                <DispatchKeyEvent keys="[TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[PAGE_DOWN]"  waitTarget="list3" waitEvent="change"/>
                 <DispatchKeyEvent keys="[PAGE_UP]"  waitTarget="list3" waitEvent="change"/>
                 <DispatchKeyEvent keys="[DOWN,DOWN]"  waitTarget="list3" waitEvent="updateComplete"/>
@@ -250,7 +250,7 @@
 		<SetProperty target="list3" propertyName="width" value="100%" waitEvent="updateComplete" waitTarget="list3"/>
 	</setup>
             <body>
-                <DispatchKeyEvent keys="[TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
+                <DispatchKeyEvent keys="[TAB, TAB, TAB, TAB]" waitTarget="list3" waitEvent="focusIn" />
                 <DispatchKeyEvent keys="[END]"  waitTarget="list3" waitEvent="change"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list3" waitEvent="updateComplete"/>
                 <DispatchKeyEvent keys="[UP]"  waitTarget="list3" waitEvent="updateComplete"/>


[11/17] git commit: [flex-sdk] [refs/heads/develop] - Embed fonts in CallOutButton tests

Posted by ah...@apache.org.
Embed fonts in CallOutButton tests


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/2f916c8e
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/2f916c8e
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/2f916c8e

Branch: refs/heads/develop
Commit: 2f916c8ee2b42bbba3a532986151b50dc7debb20
Parents: 5493a37
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 14 15:54:23 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:29 2013 -0700

----------------------------------------------------------------------
 .../baselines/calloutbutton_afterAfter.png         |  Bin 19395 -> 39427 bytes
 .../baselines/calloutbutton_afterAuto.png          |  Bin 18603 -> 38741 bytes
 .../baselines/calloutbutton_afterBefore.png        |  Bin 19264 -> 39893 bytes
 .../baselines/calloutbutton_afterEnd.png           |  Bin 18637 -> 38867 bytes
 .../baselines/calloutbutton_afterMiddle.png        |  Bin 18390 -> 38482 bytes
 .../baselines/calloutbutton_afterStart.png         |  Bin 18472 -> 38211 bytes
 .../baselines/calloutbutton_autoAfter.png          |  Bin 18843 -> 39014 bytes
 .../baselines/calloutbutton_autoAuto.png           |  Bin 19292 -> 39848 bytes
 .../baselines/calloutbutton_autoBefore.png         |  Bin 19380 -> 39768 bytes
 .../Properties/baselines/calloutbutton_autoEnd.png |  Bin 18673 -> 39128 bytes
 .../baselines/calloutbutton_autoMiddle.png         |  Bin 18708 -> 39117 bytes
 .../baselines/calloutbutton_autoStart.png          |  Bin 18324 -> 37979 bytes
 .../baselines/calloutbutton_beforeAfter.png        |  Bin 19398 -> 39589 bytes
 .../baselines/calloutbutton_beforeAuto.png         |  Bin 18715 -> 39432 bytes
 .../baselines/calloutbutton_beforeBefore.png       |  Bin 19416 -> 40115 bytes
 .../baselines/calloutbutton_beforeEnd.png          |  Bin 18859 -> 39629 bytes
 .../baselines/calloutbutton_beforeMiddle.png       |  Bin 18730 -> 38971 bytes
 .../baselines/calloutbutton_beforeStart.png        |  Bin 18479 -> 38431 bytes
 .../Properties/baselines/calloutbutton_click.png   |  Bin 18321 -> 38259 bytes
 .../baselines/calloutbutton_endAfter.png           |  Bin 18832 -> 38793 bytes
 .../Properties/baselines/calloutbutton_endAuto.png |  Bin 19310 -> 39932 bytes
 .../baselines/calloutbutton_endBefore.png          |  Bin 19302 -> 40248 bytes
 .../Properties/baselines/calloutbutton_endEnd.png  |  Bin 18545 -> 38792 bytes
 .../baselines/calloutbutton_endMiddle.png          |  Bin 18473 -> 38452 bytes
 .../baselines/calloutbutton_endStart.png           |  Bin 18267 -> 38030 bytes
 .../baselines/calloutbutton_middleAfter.png        |  Bin 18388 -> 39079 bytes
 .../baselines/calloutbutton_middleAuto.png         |  Bin 19405 -> 39643 bytes
 .../baselines/calloutbutton_middleBefore.png       |  Bin 19343 -> 39947 bytes
 .../baselines/calloutbutton_middleEnd.png          |  Bin 19540 -> 40390 bytes
 .../baselines/calloutbutton_middleMiddle.png       |  Bin 18549 -> 38673 bytes
 .../baselines/calloutbutton_middleStart.png        |  Bin 18489 -> 38728 bytes
 .../Properties/baselines/calloutbutton_over.png    |  Bin 19068 -> 38913 bytes
 .../baselines/calloutbutton_startAfter.png         |  Bin 18464 -> 38858 bytes
 .../baselines/calloutbutton_startAuto.png          |  Bin 19207 -> 39525 bytes
 .../baselines/calloutbutton_startBefore.png        |  Bin 19207 -> 39634 bytes
 .../baselines/calloutbutton_startEnd.png           |  Bin 18566 -> 38358 bytes
 .../baselines/calloutbutton_startMiddle.png        |  Bin 18366 -> 38235 bytes
 .../baselines/calloutbutton_startStart.png         |  Bin 17980 -> 37608 bytes
 .../CallOutButton/SWFs/CallOutButton_Main.mxml     |   27 ++++++++++++++-
 39 files changed, 26 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAfter.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAfter.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAfter.png
index 09305f3..9d9ca98 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAfter.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAfter.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAuto.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAuto.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAuto.png
index bb25814..051be29 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAuto.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterAuto.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterBefore.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterBefore.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterBefore.png
index db74259..286951f 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterBefore.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterBefore.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterEnd.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterEnd.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterEnd.png
index 0c0d18e..b3f86fb 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterEnd.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterEnd.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterMiddle.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterMiddle.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterMiddle.png
index 1e74cce..c403c91 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterMiddle.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterMiddle.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterStart.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterStart.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterStart.png
index 051e693..ceb0570 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterStart.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_afterStart.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAfter.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAfter.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAfter.png
index 8869bf9..e32577d 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAfter.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAfter.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAuto.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAuto.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAuto.png
index 475a46d..c3857a3 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAuto.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoAuto.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoBefore.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoBefore.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoBefore.png
index ad8a3fc..0070737 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoBefore.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoBefore.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoEnd.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoEnd.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoEnd.png
index 085c151..5a44c0d 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoEnd.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoEnd.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoMiddle.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoMiddle.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoMiddle.png
index 4d77587..498b5e6 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoMiddle.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoMiddle.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoStart.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoStart.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoStart.png
index cf2eeb5..3659e29 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoStart.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_autoStart.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAfter.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAfter.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAfter.png
index 9756747..10f9beb 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAfter.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAfter.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAuto.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAuto.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAuto.png
index 52aff10..56e8e74 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAuto.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeAuto.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeBefore.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeBefore.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeBefore.png
index 6b49845..68bb31a 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeBefore.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeBefore.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeEnd.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeEnd.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeEnd.png
index 3d808f8..83b7a25 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeEnd.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeEnd.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeMiddle.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeMiddle.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeMiddle.png
index 5abb52d..700f5fe 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeMiddle.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeMiddle.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeStart.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeStart.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeStart.png
index 000abfe..aee71f3 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeStart.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_beforeStart.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_click.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_click.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_click.png
index da47def..653e32d 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_click.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_click.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAfter.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAfter.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAfter.png
index b40ed0e..d83655e 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAfter.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAfter.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAuto.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAuto.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAuto.png
index ca09034..892d1eb 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAuto.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endAuto.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endBefore.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endBefore.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endBefore.png
index 7731546..87ec4aa 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endBefore.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endBefore.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endEnd.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endEnd.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endEnd.png
index dd982a5..bdeb178 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endEnd.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endEnd.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endMiddle.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endMiddle.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endMiddle.png
index 4a61bbd..b00cdcf 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endMiddle.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endMiddle.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endStart.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endStart.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endStart.png
index ce7caf1..1ad5cfe 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endStart.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_endStart.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAfter.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAfter.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAfter.png
index 8aa0f2a..6a1de50 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAfter.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAfter.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAuto.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAuto.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAuto.png
index 1a8a4cb..50b590b 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAuto.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleAuto.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleBefore.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleBefore.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleBefore.png
index 2392678..a9c69b7 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleBefore.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleBefore.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleEnd.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleEnd.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleEnd.png
index 2a70058..067f2e8 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleEnd.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleEnd.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleMiddle.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleMiddle.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleMiddle.png
index f8bf39b..bccbafb 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleMiddle.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleMiddle.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleStart.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleStart.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleStart.png
index 9d2899d..7448e27 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleStart.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_middleStart.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_over.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_over.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_over.png
index d72f191..2664967 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_over.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_over.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAfter.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAfter.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAfter.png
index 2b724bb..12ed70a 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAfter.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAfter.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAuto.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAuto.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAuto.png
index 74fd2a7..d6f3dc4 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAuto.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startAuto.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startBefore.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startBefore.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startBefore.png
index 427d321..db2c630 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startBefore.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startBefore.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startEnd.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startEnd.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startEnd.png
index b9b9da1..51beda0 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startEnd.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startEnd.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startMiddle.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startMiddle.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startMiddle.png
index 88ab563..869eac2 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startMiddle.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startMiddle.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startStart.png
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startStart.png b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startStart.png
index 54dd190..da39473 100644
Binary files a/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startStart.png and b/mustella/tests/experimental/spark/components/CallOutButton/Properties/baselines/calloutbutton_startStart.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2f916c8e/mustella/tests/experimental/spark/components/CallOutButton/SWFs/CallOutButton_Main.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/experimental/spark/components/CallOutButton/SWFs/CallOutButton_Main.mxml b/mustella/tests/experimental/spark/components/CallOutButton/SWFs/CallOutButton_Main.mxml
index 6570f02..973c21e 100644
--- a/mustella/tests/experimental/spark/components/CallOutButton/SWFs/CallOutButton_Main.mxml
+++ b/mustella/tests/experimental/spark/components/CallOutButton/SWFs/CallOutButton_Main.mxml
@@ -30,7 +30,32 @@
 		]]>
 	</fx:Script>
 	
-	<fx:Declarations>
+    <!-- Embed fonts for cross platform compatibility of bitmap compares. -->
+        <fx:Style>
+        @namespace s "library://ns.adobe.com/flex/spark";
+        @namespace mx "library://ns.adobe.com/flex/mx";
+        @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;
+        }        
+    </fx:Style>
+    
+    <fx:Declarations>
 		<s:ArrayList id="listItems">
 			<fx:String>I'm an item</fx:String>
 			<fx:String>Me too</fx:String>


[04/17] git commit: [flex-sdk] [refs/heads/develop] - More fixes to compensation for TextInput delaying setting actual focus

Posted by ah...@apache.org.
More fixes to compensation for TextInput delaying setting actual focus


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/b56dc4f6
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/b56dc4f6
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/b56dc4f6

Branch: refs/heads/develop
Commit: b56dc4f60cf65ce2a1210c08ab1997fc78a48f04
Parents: 57b3298
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 13 23:48:09 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:21 2013 -0700

----------------------------------------------------------------------
 mustella/as3/src/mustella/DispatchKeyEvent.as |    6 +++---
 mustella/as3/src/mustella/UnitTester.as       |   13 +++++++++++--
 2 files changed, 14 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/b56dc4f6/mustella/as3/src/mustella/DispatchKeyEvent.as
----------------------------------------------------------------------
diff --git a/mustella/as3/src/mustella/DispatchKeyEvent.as b/mustella/as3/src/mustella/DispatchKeyEvent.as
index 15830db..b2b1d83 100644
--- a/mustella/as3/src/mustella/DispatchKeyEvent.as
+++ b/mustella/as3/src/mustella/DispatchKeyEvent.as
@@ -146,7 +146,7 @@ public class DispatchKeyEvent extends TestStep
                     event.keyCode = keySequence[j];
                     event.keyLocation = keyLocation;
 
-                    if (waitEvent == "focusIn" && keySequence[j] == Keyboard.TAB)
+                    if (keySequence[j] == Keyboard.TAB)
                     {
                         // if we don't see a focusIn, focus is being set
                         // asynchronously so we need to wait.
@@ -328,7 +328,7 @@ public class DispatchKeyEvent extends TestStep
         for (var i:int = currentRepeat; i < repeatCount; i++)
         {
             var m:int = charSequence.length;
-            for (var j:int = currentKey++; j < m; j++)
+            for (var j:int = currentKey + 1; j < m; j++)
             {
                 var event:KeyboardEvent = new KeyboardEvent(type, true, cancelable); // all keyboard events bubble
                 event.ctrlKey = ctrlKey;
@@ -337,7 +337,7 @@ public class DispatchKeyEvent extends TestStep
                 event.keyCode = keySequence[j];
                 event.keyLocation = keyLocation;
                 
-                if (waitEvent == "focusIn" && keySequence[j] == Keyboard.TAB)
+                if (keySequence[j] == Keyboard.TAB)
                 {
                     currentRepeat = i;
                     currentKey = j;

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/b56dc4f6/mustella/as3/src/mustella/UnitTester.as
----------------------------------------------------------------------
diff --git a/mustella/as3/src/mustella/UnitTester.as b/mustella/as3/src/mustella/UnitTester.as
index 6e37a68..fa3c774 100644
--- a/mustella/as3/src/mustella/UnitTester.as
+++ b/mustella/as3/src/mustella/UnitTester.as
@@ -102,6 +102,11 @@ public class UnitTester extends EventDispatcher
       */
      public static var waitEvent : String;
      
+     /**
+      * UIComponentGlobals.
+      */
+     public static var uiComponentGlobals : Object;
+     
 	/**
 	 * additional wait before exit for coverage
 	 */
@@ -300,7 +305,10 @@ public class UnitTester extends EventDispatcher
 
 		var g:Class = Class(appdom.getDefinition("mx.core.UIComponentGlobals"));
 		if (g)
+        {
 			g["catchCallLaterExceptions"] = true;
+            uiComponentGlobals = g;
+        }
 
 		if (eventScripts != null)
 		{
@@ -1087,9 +1095,10 @@ public class UnitTester extends EventDispatcher
 	private static function focusBlockingHandler(event:FocusEvent):void
 	{
         // yes, there is a chance that you've clicked on the test
-        // just as it is waiting for a focusIn event
+        // just as it is waiting for a focusIn event or
+        // deferring focus assignment
         // but I think that's the best we can do for now
-        if (waitEvent == "focusIn")
+        if (waitEvent == "focusIn" || uiComponentGlobals.nextFocusObject != null)
             return;
         
 		if (blockFocusEvents && event.relatedObject == null)


[16/17] git commit: [flex-sdk] [refs/heads/develop] - color picker now wants to highlight the text in the swatch panel. Update bitmaps and wait for focusIn

Posted by ah...@apache.org.
color picker now wants to highlight the text in the swatch panel.  Update bitmaps and wait for focusIn


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/3aefa7c0
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/3aefa7c0
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/3aefa7c0

Branch: refs/heads/develop
Commit: 3aefa7c061de57a89798489e962b8333e7b451b0
Parents: b1b85c8
Author: Alex Harui <ah...@apache.org>
Authored: Wed May 15 11:56:28 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:37 2013 -0700

----------------------------------------------------------------------
 ...TextField_integration_mxColorPicker_tester.mxml |   40 +++++++-------
 .../Integration/baselines/FTE_mxColorPicker.png    |  Bin 2995 -> 3302 bytes
 .../baselines/FTE_mxColorPicker_color_red.png      |  Bin 2917 -> 3299 bytes
 .../FTE_mxColorPicker_color_red_truncating.png     |  Bin 2917 -> 3299 bytes
 .../baselines/FTE_mxColorPicker_disabled.png       |  Bin 2995 -> 3302 bytes
 .../FTE_mxColorPicker_disabledColor_green.png      |  Bin 2995 -> 3302 bytes
 .../baselines/FTE_mxColorPicker_fontSize.png       |  Bin 2995 -> 3302 bytes
 .../FTE_mxColorPicker_fontStyle_italic.png         |  Bin 2779 -> 3105 bytes
 .../baselines/FTE_mxColorPicker_fontWeight.png     |  Bin 3046 -> 3361 bytes
 .../baselines/FTE_mxColorPicker_kerning_false.png  |  Bin 2995 -> 3302 bytes
 .../baselines/FTE_mxColorPicker_kerning_true.png   |  Bin 2995 -> 3302 bytes
 .../baselines/FTE_mxColorPicker_leading.png        |  Bin 2995 -> 3302 bytes
 .../baselines/FTE_mxColorPicker_letterSpacing.png  |  Bin 2995 -> 3302 bytes
 .../FTE_mxColorPicker_textAlign_center.png         |  Bin 2999 -> 3313 bytes
 .../baselines/FTE_mxColorPicker_textAlign_end.png  |  Bin 3005 -> 3312 bytes
 .../baselines/FTE_mxColorPicker_textAlign_end2.png |  Bin 2995 -> 3302 bytes
 .../baselines/FTE_mxColorPicker_textAlign_left.png |  Bin 2995 -> 3302 bytes
 .../FTE_mxColorPicker_textAlign_right.png          |  Bin 3005 -> 3312 bytes
 .../FTE_mxColorPicker_textAlign_start.png          |  Bin 2995 -> 3302 bytes
 .../FTE_mxColorPicker_textAlign_start2.png         |  Bin 3005 -> 3312 bytes
 .../baselines/FTE_mxColorPicker_textIndent.png     |  Bin 2996 -> 3306 bytes
 21 files changed, 20 insertions(+), 20 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/FTETextField_integration_mxColorPicker_tester.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/FTETextField_integration_mxColorPicker_tester.mxml b/mustella/tests/gumbo/components/FTETextField/Integration/FTETextField_integration_mxColorPicker_tester.mxml
index 733a940..352789b 100644
--- a/mustella/tests/gumbo/components/FTETextField/Integration/FTETextField_integration_mxColorPicker_tester.mxml
+++ b/mustella/tests/gumbo/components/FTETextField/Integration/FTETextField_integration_mxColorPicker_tester.mxml
@@ -45,7 +45,7 @@
 			<setup>
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -61,7 +61,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetProperty target="can2.clrPkr" propertyName="enabled" value="false" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -82,7 +82,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="color" value="red" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -99,7 +99,7 @@
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetProperty target="can2.clrPkr" propertyName="width" value="100" waitTarget="can2.clrPkr" waitEvent="resize" />
 				<SetStyle target="can2.clrPkr" styleName="color" value="red" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -116,7 +116,7 @@
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetProperty target="can2.clrPkr" propertyName="enabled" value="false" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
 				<SetStyle target="can2.clrPkr" styleName="disabledColor" value="green" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -132,7 +132,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="fontStyle" value="italic" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -148,7 +148,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="fontSize" value="18" waitTarget="can2.clrPkr" waitEvent="enterFrame" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -164,7 +164,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="fontWeight" value="bold" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -181,7 +181,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="kerning" value="true" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -197,7 +197,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="kerning" value="false" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -214,7 +214,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="leading" value="20" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -230,7 +230,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="letterSpacing" value="10" waitTarget="can2.clrPkr" waitEvent="enterFrame" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -246,7 +246,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="textAlign" value="left" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -263,7 +263,7 @@
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="textAlign" value="left" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
 				<SetStyle target="can2.clrPkr" styleName="textAlign" value="center" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -279,7 +279,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="textAlign" value="right" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<CompareBitmap url="../Integration/baselines/$testID.png" target="can2.clrPkr.mx_internal:dropdown"/>
@@ -295,7 +295,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="textAlign" value="start" waitTarget="can2.clrPkr" waitEvent="enterFrame" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<AssertStyleValue target="can2.clrPkr" styleName="textAlign" value="start" />
@@ -313,7 +313,7 @@
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="textAlign" value="start" waitTarget="can2.clrPkr" waitEvent="enterFrame" />
 				<SetStyle target="can2.clrPkr" styleName="direction" value="rtl" waitTarget="can2.clrPkr" waitEvent="enterFrame" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<AssertStyleValue target="can2.clrPkr" styleName="textAlign" value="start" />
@@ -330,7 +330,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="textAlign" value="end" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<AssertStyleValue target="can2.clrPkr" styleName="textAlign" value="end" />
@@ -348,7 +348,7 @@
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="textAlign" value="end" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
 				<SetStyle target="can2.clrPkr" styleName="direction" value="rtl" waitTarget="can2.clrPkr" waitEvent="updateComplete" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<AssertStyleValue target="can2.clrPkr" styleName="textAlign" value="end" />
@@ -365,7 +365,7 @@
 				<ResetComponent target="can2" className="comps.FTEViewStack" waitEvent="updateComplete"/>
 				<SetProperty target="can2" propertyName="selectedChild" valueExpression="value=FlexGlobals.topLevelApplication.can2.clrPkrView" waitTarget="can2" waitEvent="change" />
 				<SetStyle target="can2.clrPkr" styleName="textIndent" value="20" waitTarget="can2.clrPkr" waitEvent="enterFrame" />
-				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="can2.clrPkr" waitEvent="open" />
+				<RunCode code="FlexGlobals.topLevelApplication.can2.clrPkr.open()" waitTarget="root" waitEvent="focusIn" />
 			</setup>
 			<body>
 				<AssertStyleValue target="can2.clrPkr" styleName="textIndent" value="20" />

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker.png
index 55af34a..27a2e1c 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_color_red.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_color_red.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_color_red.png
index 99edeb2..f0f3bd2 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_color_red.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_color_red.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_color_red_truncating.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_color_red_truncating.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_color_red_truncating.png
index 99edeb2..f0f3bd2 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_color_red_truncating.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_color_red_truncating.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_disabled.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_disabled.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_disabled.png
index 55af34a..27a2e1c 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_disabled.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_disabled.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_disabledColor_green.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_disabledColor_green.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_disabledColor_green.png
index 55af34a..27a2e1c 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_disabledColor_green.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_disabledColor_green.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontSize.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontSize.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontSize.png
index 55af34a..27a2e1c 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontSize.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontSize.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontStyle_italic.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontStyle_italic.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontStyle_italic.png
index 3f93400..c5a745e 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontStyle_italic.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontStyle_italic.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontWeight.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontWeight.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontWeight.png
index 15bbf39..5591b4b 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontWeight.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_fontWeight.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_kerning_false.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_kerning_false.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_kerning_false.png
index 55af34a..27a2e1c 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_kerning_false.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_kerning_false.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_kerning_true.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_kerning_true.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_kerning_true.png
index 55af34a..27a2e1c 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_kerning_true.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_kerning_true.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_leading.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_leading.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_leading.png
index 55af34a..27a2e1c 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_leading.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_leading.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_letterSpacing.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_letterSpacing.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_letterSpacing.png
index 55af34a..27a2e1c 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_letterSpacing.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_letterSpacing.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_center.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_center.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_center.png
index 2d7652c..df71101 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_center.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_center.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_end.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_end.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_end.png
index 059b444..72c0f79 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_end.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_end.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_end2.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_end2.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_end2.png
index 55af34a..27a2e1c 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_end2.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_end2.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_left.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_left.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_left.png
index 55af34a..27a2e1c 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_left.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_left.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_right.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_right.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_right.png
index 059b444..72c0f79 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_right.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_right.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_start.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_start.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_start.png
index 55af34a..27a2e1c 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_start.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_start.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_start2.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_start2.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_start2.png
index 059b444..72c0f79 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_start2.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textAlign_start2.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3aefa7c0/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textIndent.png
----------------------------------------------------------------------
diff --git a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textIndent.png b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textIndent.png
index 59cfa09..621a147 100644
Binary files a/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textIndent.png and b/mustella/tests/gumbo/components/FTETextField/Integration/baselines/FTE_mxColorPicker_textIndent.png differ


[02/17] git commit: [flex-sdk] [refs/heads/develop] - this file is generated so remove from version control

Posted by ah...@apache.org.
this file is generated so remove from version control


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/38834367
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/38834367
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/38834367

Branch: refs/heads/develop
Commit: 3883436732461bed09f30ad9d6897de97c522910
Parents: 37929a7
Author: Alex Harui <ah...@apache.org>
Authored: Mon May 13 20:49:14 2013 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed May 15 11:57:19 2013 -0700

----------------------------------------------------------------------
 .../bundles/flex20/enCustomBundle2_Flex20.swc      |  Bin 9663 -> 0 bytes
 1 files changed, 0 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/38834367/mustella/tests/RuntimeLocalization/RTL_SparkSkin/SWFs/Assets/bundles/flex20/enCustomBundle2_Flex20.swc
----------------------------------------------------------------------
diff --git a/mustella/tests/RuntimeLocalization/RTL_SparkSkin/SWFs/Assets/bundles/flex20/enCustomBundle2_Flex20.swc b/mustella/tests/RuntimeLocalization/RTL_SparkSkin/SWFs/Assets/bundles/flex20/enCustomBundle2_Flex20.swc
deleted file mode 100644
index fc42fb8..0000000
Binary files a/mustella/tests/RuntimeLocalization/RTL_SparkSkin/SWFs/Assets/bundles/flex20/enCustomBundle2_Flex20.swc and /dev/null differ