You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by mi...@apache.org on 2015/01/06 16:48:42 UTC

git commit: [flex-sdk] [refs/heads/develop] - FLEX-34625 Making it clear that the width and height of the text input are 0 for the bug to be reproduced.

Repository: flex-sdk
Updated Branches:
  refs/heads/develop 87e77c898 -> 839073cb4


FLEX-34625 Making it clear that the width and height of the text input are 0 for the bug to be reproduced.


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

Branch: refs/heads/develop
Commit: 839073cb4cddabf69ffb56db400603f3c922315b
Parents: 87e77c8
Author: Mihai Chira <mi...@apache.org>
Authored: Tue Jan 6 15:48:20 2015 +0000
Committer: Mihai Chira <mi...@apache.org>
Committed: Tue Jan 6 15:48:20 2015 +0000

----------------------------------------------------------------------
 frameworks/tests/unitTests/spark/skins/spark/FLEX_34625_Test.as | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/839073cb/frameworks/tests/unitTests/spark/skins/spark/FLEX_34625_Test.as
----------------------------------------------------------------------
diff --git a/frameworks/tests/unitTests/spark/skins/spark/FLEX_34625_Test.as b/frameworks/tests/unitTests/spark/skins/spark/FLEX_34625_Test.as
index c727b83..f3602a7 100644
--- a/frameworks/tests/unitTests/spark/skins/spark/FLEX_34625_Test.as
+++ b/frameworks/tests/unitTests/spark/skins/spark/FLEX_34625_Test.as
@@ -25,6 +25,8 @@ package {
             focusManager.showFocusIndicator = true;
 
             _textInput = new TextInput();
+            _textInput.width = 0;
+            _textInput.height = 0;
             _textInput.focusManager = focusManager;
 
             _finishNotifier = new EventDispatcher();