8226230: Test javax/swing/JInternalFrame/8020708/bug8020708.java fails on Ubuntu

Reviewed-by: serb
This commit is contained in:
Prasanta Sadhukhan 2020-03-19 09:20:06 +05:30
parent 9874e698b8
commit 3340e6f980

@ -87,6 +87,8 @@ public class bug8020708 {
public void run() {
frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setUndecorated(true);
frame.setLocationRelativeTo(null);
frame.setSize(300, 200);
JDesktopPane desktop = new JDesktopPane();
@ -132,6 +134,7 @@ public class bug8020708 {
frame.dispose();
}
});
robot.delay(500);
}
static final boolean installLookAndFeel(String lafName) throws Exception {