-
Bug
-
Resolution: Duplicate
-
P2
-
9
-
Windows
Simplest example of the issue is
javax/swing/ToolTipManager/Test6256140.java
This test displays a JFormattedTextField with a visible tooltip.
Robot does press 'a' and then
robot.waitForIdle();
if (!isTooltipShowning()) {
throw new RuntimeException("Tooltip is not shown");
}
robot.keyPress(KeyEvent.VK_ESCAPE);
robot.keyRelease(KeyEvent.VK_ESCAPE);
Problem is, almost always the test either hangs in robot.waitForIdle() and doesn't even enter that isTooltipShowning() or does it too fast so that tooltip is not visible yet. The first situation is typical for an individual test rerun.
Something should be done with that ASAP.
RULE "javax/swing/ToolTipManager/Test6256140.java" Exception java.lang.RuntimeException: Tooltip is not shown
RULE "javax/swing/ToolTipManager/Test6256140.java" Timeout none
javax/swing/ToolTipManager/Test6256140.java
This test displays a JFormattedTextField with a visible tooltip.
Robot does press 'a' and then
robot.waitForIdle();
if (!isTooltipShowning()) {
throw new RuntimeException("Tooltip is not shown");
}
robot.keyPress(KeyEvent.VK_ESCAPE);
robot.keyRelease(KeyEvent.VK_ESCAPE);
Problem is, almost always the test either hangs in robot.waitForIdle() and doesn't even enter that isTooltipShowning() or does it too fast so that tooltip is not visible yet. The first situation is typical for an individual test rerun.
Something should be done with that ASAP.
RULE "javax/swing/ToolTipManager/Test6256140.java" Exception java.lang.RuntimeException: Tooltip is not shown
RULE "javax/swing/ToolTipManager/Test6256140.java" Timeout none
- relates to
-
JDK-8147842 IME Composition Window is displayed at incorrect location
-
- Resolved
-
-
JDK-8162080 Regression: failure of javax/swing/JComboBox/6559152/bug6559152.java
-
- Closed
-