-
Enhancement
-
Resolution: Not an Issue
-
P4
-
None
-
6u1
-
other
-
solaris
Following are the steps to reproduce the defect.
This defect is reprocible only in solaris 10 and 9 both in (JDS)and(CDE)
1.Create an undecorated frame.
2.make it visible.
3.press the keys Alt and Space bar
4.select "size" or "resize" from pop up
5.using key board arrows Right arrow and Down arrow try to change the size of the
frame.
Expected result: It should not allow the user to change the size of the frame.
OR the option size should be disabled. behaviour is correct in
windows but not in solaris.
Actual result: It is allowing the user to change the size of the frame.
please run the following or attached code to reproduce the defect
****************
import java.awt.*;
public class Bug2{
public static void main(String args[])
{
Bug2 f=new Bug2();
f.test();
}
public void test ()
{
Frame f=new Frame("first window");
f.setSize(300,300);
f.setUndecorated(true);
f.setVisible(true);
}
}
*****************************************************************************
This defect is reprocible only in solaris 10 and 9 both in (JDS)and(CDE)
1.Create an undecorated frame.
2.make it visible.
3.press the keys Alt and Space bar
4.select "size" or "resize" from pop up
5.using key board arrows Right arrow and Down arrow try to change the size of the
frame.
Expected result: It should not allow the user to change the size of the frame.
OR the option size should be disabled. behaviour is correct in
windows but not in solaris.
Actual result: It is allowing the user to change the size of the frame.
please run the following or attached code to reproduce the defect
****************
import java.awt.*;
public class Bug2{
public static void main(String args[])
{
Bug2 f=new Bug2();
f.test();
}
public void test ()
{
Frame f=new Frame("first window");
f.setSize(300,300);
f.setUndecorated(true);
f.setVisible(true);
}
}
*****************************************************************************