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 F05B7D5B9 for ; Fri, 7 Sep 2012 20:26:46 +0000 (UTC) Received: (qmail 72356 invoked by uid 500); 7 Sep 2012 20:26:46 -0000 Delivered-To: apmail-incubator-flex-commits-archive@incubator.apache.org Received: (qmail 72300 invoked by uid 500); 7 Sep 2012 20:26:46 -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 72291 invoked by uid 99); 7 Sep 2012 20:26:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Sep 2012 20:26:46 +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, 07 Sep 2012 20:26:43 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 035EA238896F; Fri, 7 Sep 2012 20:26:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1382159 - in /incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager: Properties/ Properties/baselines/ SWFs/ Date: Fri, 07 Sep 2012 20:25:59 -0000 To: flex-commits@incubator.apache.org From: cframpton@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120907202600.035EA238896F@eris.apache.org> Author: cframpton Date: Fri Sep 7 20:25:59 2012 New Revision: 1382159 URL: http://svn.apache.org/viewvc?rev=1382159&view=rev Log: Embed missing fonts. Fix up PopUpManager_properties_spark so you can run individual tests without it blowing up if there is no popup to "clean". Modified: incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/Properties/PopUpManager_properties_spark.mxml incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/Properties/baselines/PopUp_properties_height_300.png incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/Properties/baselines/PopUp_properties_width_300.png incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/SWFs/PopUpManager_Basic.mxml incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/SWFs/PopUpManager_Basic_spark.mxml incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/SWFs/PopUpManager_Bugs_spark.mxml Modified: incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/Properties/PopUpManager_properties_spark.mxml URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/Properties/PopUpManager_properties_spark.mxml?rev=1382159&r1=1382158&r2=1382159&view=diff ============================================================================== --- incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/Properties/PopUpManager_properties_spark.mxml (original) +++ incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/Properties/PopUpManager_properties_spark.mxml Fri Sep 7 20:25:59 2012 @@ -42,12 +42,12 @@ } } }*/ - if(application.iPopUp.visible) + if(application.iPopUp && application.iPopUp.visible) { PopUpManager.removePopUp(application.iPopUp); } - if(application.canvasPopUp.visible) + if(application.canvasPopUp && application.canvasPopUp.visible) { PopUpManager.removePopUp(application.canvasPopUp); } Modified: incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/Properties/baselines/PopUp_properties_height_300.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/Properties/baselines/PopUp_properties_height_300.png?rev=1382159&r1=1382158&r2=1382159&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/Properties/baselines/PopUp_properties_width_300.png URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/Properties/baselines/PopUp_properties_width_300.png?rev=1382159&r1=1382158&r2=1382159&view=diff ============================================================================== Binary files - no diff available. Modified: incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/SWFs/PopUpManager_Basic.mxml URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/SWFs/PopUpManager_Basic.mxml?rev=1382159&r1=1382158&r2=1382159&view=diff ============================================================================== --- incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/SWFs/PopUpManager_Basic.mxml (original) +++ incubator/flex/sdk/branches/develop/mustella/tests/Managers/PopUpManager/SWFs/PopUpManager_Basic.mxml Fri Sep 7 20:25:59 2012 @@ -19,6 +19,9 @@ --> + + + + + + + + @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: myArial; + embedAsCFF: true; + } + + + @font-face{ + src: url("../../../../Assets/Fonts/Open_Sans/OpenSans-Bold.ttf"); + fontWeight: bold; + fontFamily: myArial; + embedAsCFF: true; + } + + @font-face{ + src: url("../../../../Assets/Fonts/Open_Sans/OpenSans-Italic.ttf"); + fontStyle: italic; + fontFamily: myArial; + embedAsCFF: true; + + } + + s|RichEditableText, s|Label { + fontAntiAliasType: "normal"; + fontFamily: MyArial; + } + + - -