-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.1.5, 1.2.0, 1.2.2
-
x86, sparc
-
solaris, solaris_2.5.1
Name: aaC67449 Date: 12/26/97
Dialog.setLocation(int,int) does not always set location correctly when the frame is visible.
The test sets location of dialog 100 times and counts how many times the location was set incorrectly.
import java.awt.*;
public class Test {
public static void main(String argv[]) {
int err=0;
Dialog f=new Dialog(new Frame());
f.setVisible(true);
for(int i=0 ; i<100; i++){
int x=(new Double(Math.random()
*(Toolkit.getDefaultToolkit().getScreenSize().width
-300))).intValue();
int y=(new Double(Math.random()
*(Toolkit.getDefaultToolkit().getScreenSize().height
-400))).intValue();
f.setLocation(x,y);
if (f.getLocation().x!=x || f.getLocation().y!=y)
err++;
}
System.out.println(" "+err+" errors");
System.exit(0);
}
}
------------Output---------
98 errors
======================================================================
- duplicates
-
JDK-4207012 Regression test DialogLocationTest.html Failing
-
- Closed
-
-
JDK-4234645 Unix: Regression test DialogLocationTest.html Failing
-
- Closed
-