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 58874D1BD for ; Tue, 7 Aug 2012 15:41:38 +0000 (UTC) Received: (qmail 88980 invoked by uid 500); 7 Aug 2012 15:41:38 -0000 Delivered-To: apmail-incubator-flex-commits-archive@incubator.apache.org Received: (qmail 88933 invoked by uid 500); 7 Aug 2012 15:41:38 -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 88925 invoked by uid 99); 7 Aug 2012 15:41:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Aug 2012 15:41:38 +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; Tue, 07 Aug 2012 15:41:33 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 3F9B22388B1B; Tue, 7 Aug 2012 15:40:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1370323 [9/12] - in /incubator/flex/trunk/mustella/tests/itemRenderers: ./ Assets/ Halo/ Halo/DataGrid/ Halo/DataGrid/SWFs/ Halo/DataGrid/SWFs/assets/ Halo/DataGrid/SWFs/comps/ Halo/DataGrid/SWFs/view/ Halo/DataGrid/baselines/ Halo/DataGri... Date: Tue, 07 Aug 2012 15:39:45 -0000 To: flex-commits@incubator.apache.org From: pent@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120807154045.3F9B22388B1B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/ItemRenderer_BugTests_spark.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/ItemRenderer_BugTests_spark.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/ItemRenderer_BugTests_spark.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/ItemRenderer_BugTests_spark.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/AlbumDataAS.as URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/AlbumDataAS.as?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/AlbumDataAS.as (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/AlbumDataAS.as Tue Aug 7 15:39:33 2012 @@ -0,0 +1,40 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// Licensed to the Apache Software Foundation (ASF) under one or more +// contributor license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright ownership. +// The ASF licenses this file to You under the Apache License, Version 2.0 +// (the "License"); you may not use this file except in compliance with +// the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +//////////////////////////////////////////////////////////////////////////////// +package data { + + public class AlbumDataAS { + + public var myData:Object; + public function AlbumDataAS(): void + { + + myData = [ + { Artist:'Artist A', Album:'Album A', Price:11.99, Available: true }, + { Artist:'Artist A', Album:'Album B', Price:10.99, Available: false }, + { Artist:'Artist A', Album:'Album C', Price:12.99, Available: true }, + { Artist:'Artist A', Album:'Album D', Price:11.99, Available: true }, + { Artist:'Artist A', Album:'Album E', Price:11.99, Available: true }, + { Artist:'Artist O', Album:'Artist O', Price:5.99, Available: false }, + { Artist:'Artist B', Album:'Album F', Price:6.99, Available: false }, + { Artist:'Artist C', Album:'Album G', Price:8.99, Available: true }, + { Artist:'Artist D', Album:'Album H', Price:16.99, Available: false }, + ]; + } + } +} \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/DaysDataAS.as URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/DaysDataAS.as?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/DaysDataAS.as (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/DaysDataAS.as Tue Aug 7 15:39:33 2012 @@ -0,0 +1,38 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// Licensed to the Apache Software Foundation (ASF) under one or more +// contributor license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright ownership. +// The ASF licenses this file to You under the Apache License, Version 2.0 +// (the "License"); you may not use this file except in compliance with +// the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +//////////////////////////////////////////////////////////////////////////////// +package data { + + public class DaysDataAS { + + public var myData:Object; + public function DaysDataAS(): void + { + + myData = [ + { Monday: 9, Tuesday: 3, Wednesday: 4, Thursday: 10 }, + { Monday: 7, Tuesday: 9, Wednesday: 8, Thursday: 0 }, + { Monday: 1, Tuesday: 10, Wednesday: 4, Thursday: 1 }, + { Monday: 10, Tuesday: 3, Wednesday: 1, Thursday: 4 }, + { Monday: 9, Tuesday: 8, Wednesday: 0, Thursday: 5 }, + { Monday: 5, Tuesday: 10, Wednesday: 4, Thursday: 5 }, + { Monday: 4, Tuesday: 3, Wednesday: 9, Thursday: 10 } + ]; + } + } +} \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/ListDataAS.as URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/ListDataAS.as?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/ListDataAS.as (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/ListDataAS.as Tue Aug 7 15:39:33 2012 @@ -0,0 +1,44 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// Licensed to the Apache Software Foundation (ASF) under one or more +// contributor license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright ownership. +// The ASF licenses this file to You under the Apache License, Version 2.0 +// (the "License"); you may not use this file except in compliance with +// the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +//////////////////////////////////////////////////////////////////////////////// +package data { + + public class ListDataAS { + + public var myData:Object; + public function ListDataAS(): void + { + var date1:Date = new Date(2007,4,20); + var date2:Date = new Date(2007,0,15); + var date3:Date = new Date(2007,9,24); + + myData = [ + {label:"Toys", available:false, quantity: 0, shipDate: date1, url: "../../../../../Assets/Images/redrect.jpg", color: "Red"}, + {label:"Stuffed Animals", available:false, quantity: 0, shipDate: date1, url: "../../../../../Assets/Images/redrect.jpg", color: "Red"}, + {label:"Some Bears", available:true, quantity: 2, shipDate: date2, url: "../../../../../Assets/Images/greenrect.jpg", color: "Green"}, + {label:"Dinosaur", available:true, quantity: 8, shipDate: date1, url: "../../../../../Assets/Images/purplerect.jpg", color: "Fuscia"}, + {label:"Cars", available:true, quantity: 9, shipDate: date1, url: "../../../../../Assets/Images/yellowrect.jpg", color: "Yellow"}, + {label:"Games", available:false, quantity: 0, shipDate: date2, url: "../../../../../Assets/Images/bluerect.jpg", color: "Black"}, + {label:"Board Games", available:false, quantity: 0, shipDate: date3, url: "../../../../../Assets/Images/bluerect.jpg", color: "Black"}, + {label:"Dice Game", available:true, quantity: 4, shipDate: date3, url: "../../../../../Assets/Images/orangerect.jpg", color: "White"}, + {label:"Movie", available:false, quantity: 0, shipDate: date1, url: "../../../../../Assets/Images/redrect.jpg", color: "Rose"}, + {label:"Video Game",available:true, quantity: 8, shipDate: date3, url: "../../../../../Assets/Images/purplerect.jpg", color: "Periwinkle"}, + ]; + } + } +} \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/NameDataAS.as URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/NameDataAS.as?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/NameDataAS.as (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/DataGrid/test_scripts/data/NameDataAS.as Tue Aug 7 15:39:33 2012 @@ -0,0 +1,47 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// Licensed to the Apache Software Foundation (ASF) under one or more +// contributor license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright ownership. +// The ASF licenses this file to You under the Apache License, Version 2.0 +// (the "License"); you may not use this file except in compliance with +// the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +//////////////////////////////////////////////////////////////////////////////// +package data { + + public class NameDataAS { + + public var myData:Object; + public function NameDataAS(): void + { + + myData = [ + { name: "Person A", + cdata: true, + phone: "999-555-6589", + image: "../../../Assets/products/putty.jpg"}, + { name: "Person B", + cdata: false, + phone: "999-555-3353", + image: "../../../Assets/products/putty.jpg"}, + { name: "Person C", + cdata: true, + phone: "999-555-2453", + image: "../../../Assets/products/putty.jpg"}, + { name: "Person D", + cdata: false, + phone: "999-555-6549", + image: "../../../Assets/products/putty.jpg"} + ]; + } + } +} \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListButton.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListButton.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListButton.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListButton.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListCheckbox.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListCheckbox.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListCheckbox.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListCheckbox.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListCombobox.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListCombobox.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListCombobox.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListCombobox.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + Maybe + No + Yes + + + + + + + + \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListDateField.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListDateField.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListDateField.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListDateField.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListImage.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListImage.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListImage.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListImage.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListLabel.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListLabel.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListLabel.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListLabel.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListNumericStepper.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListNumericStepper.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListNumericStepper.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListNumericStepper.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListText.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListText.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListText.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListText.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListTextinput.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListTextinput.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListTextinput.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/HListTextinput.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/MyComboBox.as URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/MyComboBox.as?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/MyComboBox.as (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/comps/MyComboBox.as Tue Aug 7 15:39:33 2012 @@ -0,0 +1,31 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// Licensed to the Apache Software Foundation (ASF) under one or more +// contributor license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright ownership. +// The ASF licenses this file to You under the Apache License, Version 2.0 +// (the "License"); you may not use this file except in compliance with +// the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +//////////////////////////////////////////////////////////////////////////////// +package comps { + +import mx.controls.*; +import mx.core.*; + + public class MyComboBox extends ComboBox + { + public function MyComboBox() + { + dataProvider = ['Red', 'Fuscia', 'Black', 'White', 'Yellow', 'Green', 'Periwinkle']; + } + } +} Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/horizontalList_Basic_spark.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/horizontalList_Basic_spark.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/horizontalList_Basic_spark.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/SWFs/horizontalList_Basic_spark.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/buttonRenderer.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/buttonRenderer.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/buttonRenderer.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/buttonRendererAS.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/buttonRendererAS.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/buttonRendererAS.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/checkBoxRenderer.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/checkBoxRenderer.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/checkBoxRenderer.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/checkBoxRendererAS.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/checkBoxRendererAS.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/checkBoxRendererAS.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/comboBoxRenderer.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/comboBoxRenderer.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/comboBoxRenderer.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/comboBoxRendererAS.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/comboBoxRendererAS.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/comboBoxRendererAS.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/dateFieldRenderer.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/dateFieldRenderer.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/dateFieldRenderer.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/dateFieldRendererAS.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/dateFieldRendererAS.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/dateFieldRendererAS.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/imageRenderer.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/imageRenderer.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/imageRenderer.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/imageRendererAS.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/imageRendererAS.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/imageRendererAS.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/labelRenderer.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/labelRenderer.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/labelRenderer.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/labelRendererAS.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/labelRendererAS.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/labelRendererAS.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/numStepperRenderer.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/numStepperRenderer.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/numStepperRenderer.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/numericStepperRendererAS.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/numericStepperRendererAS.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/numericStepperRendererAS.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/textRenderer.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/textRenderer.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/textRenderer.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/textRendererAS.png URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/textRendererAS.png?rev=1370323&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/baselines/textRendererAS.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/test_scripts/HorizontalList_itemRenderer_spark.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/test_scripts/HorizontalList_itemRenderer_spark.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/test_scripts/HorizontalList_itemRenderer_spark.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/HorizontalList/test_scripts/HorizontalList_itemRenderer_spark.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/List_customTests_spark.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/List_customTests_spark.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/List_customTests_spark.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/List_customTests_spark.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/List_itemEditorTests_spark.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/List_itemEditorTests_spark.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/List_itemEditorTests_spark.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/List_itemEditorTests_spark.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/List_itemRendererTests_spark.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/List_itemRendererTests_spark.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/List_itemRendererTests_spark.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/List_itemRendererTests_spark.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListCheckBox.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListCheckBox.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListCheckBox.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListCheckBox.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,28 @@ + + + + + import mx.controls.CheckBox; + + + Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListComboBox.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListComboBox.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListComboBox.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListComboBox.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,47 @@ + + + + + + + + Red + Green + Blue + Black + White + Fuscia + Rose + Periwinkle + Yellow + + + + + + + + + Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListDateField.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListDateField.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListDateField.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListDateField.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,31 @@ + + + + + + + + + Added: incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListNumericStepper.mxml URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListNumericStepper.mxml?rev=1370323&view=auto ============================================================================== --- incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListNumericStepper.mxml (added) +++ incubator/flex/trunk/mustella/tests/itemRenderers/Spark/List/SWFs/comps/EditorListNumericStepper.mxml Tue Aug 7 15:39:33 2012 @@ -0,0 +1,31 @@ + + + + + + + + +