Return-Path: X-Original-To: apmail-incubator-flex-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-flex-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 87F86D7FF for ; Fri, 21 Dec 2012 18:06:29 +0000 (UTC) Received: (qmail 39373 invoked by uid 500); 21 Dec 2012 18:06:29 -0000 Delivered-To: apmail-incubator-flex-commits-archive@incubator.apache.org Received: (qmail 39347 invoked by uid 500); 21 Dec 2012 18:06:29 -0000 Mailing-List: contact flex-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: flex-dev@incubator.apache.org Delivered-To: mailing list flex-commits@incubator.apache.org Received: (qmail 39340 invoked by uid 99); 21 Dec 2012 18:06:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2012 18:06:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2012 18:06:19 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 54CF52388B6C; Fri, 21 Dec 2012 18:05:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1425063 [12/13] - in /incubator/flex/sdk/branches/develop: frameworks/ frameworks/projects/spark/ frameworks/projects/spark/src/ frameworks/projects/spark/src/spark/collections/ frameworks/projects/spark/src/spark/components/ frameworks/pr... Date: Fri, 21 Dec 2012 18:05:22 -0000 To: flex-commits@incubator.apache.org From: cframpton@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121221180525.54CF52388B6C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Properties/DataGrid_Properties_sortable.mxml URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Properties/DataGrid_Properties_sortable.mxml?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== --- incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Properties/DataGrid_Properties_sortable.mxml (original) +++ incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Properties/DataGrid_Properties_sortable.mxml Fri Dec 21 18:05:20 2012 @@ -58,24 +58,31 @@ public var tobeCheckedCells:ArrayList; public var arrList:ArrayList; public var rowsHolder:ArrayList=new ArrayList(); - public var indices:Vector.; - public var xmlListColl:XMLListCollection; - public var temp:String=""; - public var vTemp:Vector.=Vector.([0,1,2]); - public var vTemp2:Vector.; - public var newItem:Object={index:101, firstName:"New Name",lastName:"Earl",food:"Almonds",drink:"DrinkD",imageURL:"../../../../../Assets/Images/smallbluerect.jpg", numberValue:3, birthDay:"2004/08/08" }; + public var indices:Vector.; + public var xmlListColl:XMLListCollection; + public var temp:String=""; + public var vTemp:Vector.=Vector.([0,1,2]); + public var vTemp2:Vector.; + public var newItem:Object={index:101, firstName:"New Name",lastName:"Earl",food:"Almonds",drink:"DrinkD",imageURL:"../../../../../Assets/Images/smallbluerect.jpg", numberValue:3, birthDay:"2004/08/08" }; - - - /** - * this method is to set a editorClass on a dataGrid based on columnIndex - */ - public function setCellEditorOnColumn(dg:DataGrid, editorClass:Class, index:int):void - { - var gc:GridColumn=(GridColumn)(dg.columns.getItemAt(index)); - gc.itemEditor=new ClassFactory(editorClass); - gc.editable=true; - } + [Bindable] + private var firstNameX:int; + + /** + * this method is to set a editorClass on a dataGrid based on columnIndex + */ + public function setCellEditorOnColumn(dg:DataGrid, editorClass:Class, index:int):void + { + var gc:GridColumn=(GridColumn)(dg.columns.getItemAt(index)); + gc.itemEditor=new ClassFactory(editorClass); + gc.editable=true; + } + + private function setFirstNameX():void + { + firstNameX = FlexGlobals.topLevelApplication.dg2.grid.getColumnBounds(1).x + 10; + //trace("setFirstNameX", firstNameX); + } } ]]> @@ -319,36 +326,36 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -967,33 +974,37 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1076,53 +1087,42 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1448,4 +1448,4 @@ - \ No newline at end of file + Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Properties/DataGrid_Properties_visible.mxml URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Properties/DataGrid_Properties_visible.mxml?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== --- incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Properties/DataGrid_Properties_visible.mxml (original) +++ incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Properties/DataGrid_Properties_visible.mxml Fri Dec 21 18:05:20 2012 @@ -53,15 +53,17 @@ - + - - + + + - + + @@ -69,30 +71,38 @@ - + + + + + + + - - + - - + + - + + + + @@ -102,15 +112,17 @@ - + + - + + @@ -311,4 +323,4 @@ - \ No newline at end of file + Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Properties/DataGrid_dataProvider_test002.mxml URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Properties/DataGrid_dataProvider_test002.mxml?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== --- incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Properties/DataGrid_dataProvider_test002.mxml (original) +++ incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Properties/DataGrid_dataProvider_test002.mxml Fri Dec 21 18:05:20 2012 @@ -119,22 +119,21 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -624,4 +623,4 @@ - \ No newline at end of file + Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/DataGrid_basic_001.mxml URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/DataGrid_basic_001.mxml?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== --- incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/DataGrid_basic_001.mxml (original) +++ incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/DataGrid_basic_001.mxml Fri Dec 21 18:05:20 2012 @@ -66,19 +66,23 @@ embedAsCFF: false; } - - s|DataGrid s|GridColumnHeaderGroup{ + mx|ColorPicker { + fontFamily: MyVeraHalo; + fontAntiAliasType: normal; + fontLookup: "embeddedCFF"; + } + + s|DataGrid s|GridColumnHeaderGroup { fontAntiAliasType: "normal"; fontFamily: MyVera; - fontLookup: "embeddedCFF"; + fontLookup: "embeddedCFF"; } - global{ fontFamily: MyVera; fontAntiAliasType: normal; kerning: "off"; - } + } @@ -577,4 +581,4 @@ - \ No newline at end of file + Added: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/DataGrid_itemEditor.compile URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/DataGrid_itemEditor.compile?rev=1425063&view=auto ============================================================================== --- incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/DataGrid_itemEditor.compile (added) +++ incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/DataGrid_itemEditor.compile Fri Dec 21 18:05:20 2012 @@ -0,0 +1 @@ +-show-binding-warnings=false Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/DataGrid_itemEditor.mxml URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/DataGrid_itemEditor.mxml?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== --- incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/DataGrid_itemEditor.mxml (original) +++ incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/DataGrid_itemEditor.mxml Fri Dec 21 18:05:20 2012 @@ -453,4 +453,4 @@ - \ No newline at end of file + Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridLargeGridLinesSkin.mxml URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridLargeGridLinesSkin.mxml?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== --- incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridLargeGridLinesSkin.mxml (original) +++ incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridLargeGridLinesSkin.mxml Fri Dec 21 18:05:20 2012 @@ -33,11 +33,17 @@ columnHeaderGroup's headerRenderer prope and can be overridden by subclasses of this class: alternatingRowColors, caretIndicator, columnSeparator, editorIndicator, headerColumnSeparator, hoverIndicator, +lockedColumnsSeparator, lockedRowsSeparator, rowSeparator, selectionIndicator. All of these -declarations define DataGrid skin parts except headerColumnSeparator -which is used as the value of the columnHeaderGroup's columnSeparator property.

+declarations define DataGrid skin parts except headerColumnSeparator and +headerRenderer which are used for the values of the columnHeaderGroup's +columnSeparator and headerRenderer properties.

@see spark.components.DataGrid +@langversion 3.0 +@playerversion Flash 10 +@playerversion AIR 2.5 +@productversion Flex 4.5 --> - [HostComponent("spark.components.DataGrid")] + @@ -60,14 +76,14 @@ which is used as the value of the column - + + @@ -97,11 +114,14 @@ which is used as the value of the column - + + @@ -129,23 +150,50 @@ which is used as the value of the column - + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -176,11 +248,14 @@ which is used as the value of the column - + + @@ -211,7 +287,8 @@ which is used as the value of the column - static private const exclusions:Array = ["scroller", "background"]; + - - + + headerRenderer="{headerRenderer}"/> @@ -289,13 +371,19 @@ which is used as the value of the column - - - - - - - + + + + + + + + + + + + + Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridLiveScrollingFalseSkin.mxml URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridLiveScrollingFalseSkin.mxml?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== --- incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridLiveScrollingFalseSkin.mxml (original) +++ incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridLiveScrollingFalseSkin.mxml Fri Dec 21 18:05:20 2012 @@ -33,11 +33,17 @@ columnHeaderGroup's headerRenderer prope and can be overridden by subclasses of this class: alternatingRowColors, caretIndicator, columnSeparator, editorIndicator, headerColumnSeparator, hoverIndicator, +lockedColumnsSeparator, lockedRowsSeparator, rowSeparator, selectionIndicator. All of these -declarations define DataGrid skin parts except headerColumnSeparator -which is used as the value of the columnHeaderGroup's columnSeparator property.

+declarations define DataGrid skin parts except headerColumnSeparator and +headerRenderer which are used for the values of the columnHeaderGroup's +columnSeparator and headerRenderer properties.

@see spark.components.DataGrid +@langversion 3.0 +@playerversion Flash 10 +@playerversion AIR 2.5 +@productversion Flex 4.5 --> - [HostComponent("spark.components.DataGrid")] + @@ -60,14 +76,14 @@ which is used as the value of the column - + + @@ -97,11 +114,14 @@ which is used as the value of the column - + + @@ -129,23 +150,50 @@ which is used as the value of the column
- + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -176,11 +248,14 @@ which is used as the value of the column - + + @@ -211,7 +287,8 @@ which is used as the value of the column - static private const exclusions:Array = ["scroller", "background"]; + - - + + headerRenderer="{headerRenderer}"/> @@ -289,13 +371,19 @@ which is used as the value of the column - - - - - - - + + + + + + + + + + + + + @@ -312,4 +400,4 @@ which is used as the value of the column -
+ \ No newline at end of file Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridNoGridLinesSkin.mxml URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridNoGridLinesSkin.mxml?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== --- incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridNoGridLinesSkin.mxml (original) +++ incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridNoGridLinesSkin.mxml Fri Dec 21 18:05:20 2012 @@ -33,11 +33,17 @@ columnHeaderGroup's headerRenderer prope and can be overridden by subclasses of this class: alternatingRowColors, caretIndicator, columnSeparator, editorIndicator, headerColumnSeparator, hoverIndicator, +lockedColumnsSeparator, lockedRowsSeparator, rowSeparator, selectionIndicator. All of these -declarations define DataGrid skin parts except headerColumnSeparator -which is used as the value of the columnHeaderGroup's columnSeparator property.

+declarations define DataGrid skin parts except headerColumnSeparator and +headerRenderer which are used for the values of the columnHeaderGroup's +columnSeparator and headerRenderer properties.

@see spark.components.DataGrid +@langversion 3.0 +@playerversion Flash 10 +@playerversion AIR 2.5 +@productversion Flex 4.5 --> - [HostComponent("spark.components.DataGrid")] + @@ -60,14 +76,14 @@ which is used as the value of the column - + + @@ -97,11 +114,14 @@ which is used as the value of the column - + + - - + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + - + + @@ -193,7 +269,8 @@ which is used as the value of the column - static private const exclusions:Array = ["scroller", "background"]; + - - + + headerRenderer="{headerRenderer}"/> @@ -271,13 +353,19 @@ which is used as the value of the column - - - - - - - + + + + + + + + + + + + + @@ -294,4 +382,4 @@ which is used as the value of the column - + \ No newline at end of file Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridselLyrTopSkin.mxml URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridselLyrTopSkin.mxml?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== --- incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridselLyrTopSkin.mxml (original) +++ incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/assets/skins/CustomDataGridselLyrTopSkin.mxml Fri Dec 21 18:05:20 2012 @@ -33,11 +33,17 @@ columnHeaderGroup's headerRenderer prope and can be overridden by subclasses of this class: alternatingRowColors, caretIndicator, columnSeparator, editorIndicator, headerColumnSeparator, hoverIndicator, +lockedColumnsSeparator, lockedRowsSeparator, rowSeparator, selectionIndicator. All of these -declarations define DataGrid skin parts except headerColumnSeparator -which is used as the value of the columnHeaderGroup's columnSeparator property.

+declarations define DataGrid skin parts except headerColumnSeparator and +headerRenderer which are used for the values of the columnHeaderGroup's +columnSeparator and headerRenderer properties.

@see spark.components.DataGrid +@langversion 3.0 +@playerversion Flash 10 +@playerversion AIR 2.5 +@productversion Flex 4.5 --> - [HostComponent("spark.components.DataGrid")] + @@ -60,14 +76,14 @@ which is used as the value of the column - + + @@ -97,11 +114,14 @@ which is used as the value of the column - + + @@ -129,23 +150,50 @@ which is used as the value of the column - + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -176,11 +248,14 @@ which is used as the value of the column - + + @@ -211,7 +287,8 @@ which is used as the value of the column - static private const exclusions:Array = ["scroller", "background"]; + - - + + headerRenderer="{headerRenderer}"/> @@ -289,13 +371,19 @@ which is used as the value of the column - - - - - - - + + + + + + + + + + + + + @@ -312,4 +400,4 @@ which is used as the value of the column - + \ No newline at end of file Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/components/DataGrid_editable_size.mxml URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/components/DataGrid_editable_size.mxml?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== --- incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/components/DataGrid_editable_size.mxml (original) +++ incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/SWFs/components/DataGrid_editable_size.mxml Fri Dec 21 18:05:20 2012 @@ -166,6 +166,8 @@ xmlns:s="library://ns.adobe.com/flex/spa import spark.components.gridClasses.GridColumn; import flash.events.FocusEvent; + // This renderer seems like a very poor design. It is not a good test! + // The change is not saved since just setting data doesn't do it. protected function itemIdInput_focusOutHandler(event:FocusEvent):void { @@ -192,4 +194,4 @@ xmlns:s="library://ns.adobe.com/flex/spa - \ No newline at end of file + Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_AlternatingRowColor_test.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_AlternatingRowColor_test.png?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_addRemoveRow_test_addFirstRow.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_addRemoveRow_test_addFirstRow.png?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_addRemoveRow_test_removeFirstRow.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_addRemoveRow_test_removeFirstRow.png?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_getsetter_test.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_getsetter_test.png?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_property_test.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_property_test.png?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_skin_rowChange_test.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_skin_rowChange_test.png?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_skin_rowChange_test_addRow.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_skin_rowChange_test_addRow.png?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_skin_test.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_skin_test.png?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_update_test.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/rowBackground_update_test.png?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/style_borderAlpha_test001_zero.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/style_borderAlpha_test001_zero.png?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/style_borderAlpha_test002_half.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/style_borderAlpha_test002_half.png?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/style_borderVisible_test001_hide.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/style_borderVisible_test001_hide.png?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/style_direction_locale_IR_test001.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/gumbo/components/DataGrid/Styles/Baselines/style_direction_locale_IR_test001.png?rev=1425063&r1=1425062&r2=1425063&view=diff ============================================================================== Binary files - no diff available.