Bug #9888
empty inner frame width not set to defaultMinimalWidth
Status:
New
Priority:
Normal
Assignee:
-
Target version:
-
Start date:
Due date:
% Done:
0%
billable:
No
vendor_id:
GCD
case_num:
version_reported:
version_resolved:
reviewer:
production:
No
env_name:
topics:
History
#1 Updated by Andrei Iacob over 1 year ago
width attribute of an empty frame is not set to the default minimal width if it's parent is not visible.
Testcase:
DEFINE FRAME f-child
WITH 1 DOWN NO-BOX
AT COL 1 ROW 1.
DEFINE FRAME f-parent
SPACE(30.00) SKIP(10.00).
MESSAGE "w:" FRAME f-child:WIDTH "h:" FRAME f-child:height.
FRAME f-child:hidden = TRUE.
FRAME f-child:frame = FRAME f-parent:handle.
MESSAGE "w:" FRAME f-child:WIDTH "h:" FRAME f-child:height.
FRAME f-child:hidden = FALSE.
MESSAGE "w:" FRAME f-child:WIDTH "h:" FRAME f-child:height.
no-box attribute is mandatory for this scenario.