- 
    Bug 
- 
    Resolution: Not an Issue
- 
     P4 P4
- 
    8, 11, 12, 13, 14, 15
                    The test RemoveAllShrinkTest clicks left mouse button to open Choice:
robot.mouseMove(
pt.x + choice.getWidth() - choice.getHeight()/2,
pt.y + choice.getHeight()/2);
The x coordinate uses choice.getHeight()/2 which likely will result in the wrong position and Choice does not open at all.
It should be pt.x + choice.getWidth()/2.
robot.mouseMove(
pt.x + choice.getWidth() - choice.getHeight()/2,
pt.y + choice.getHeight()/2);
The x coordinate uses choice.getHeight()/2 which likely will result in the wrong position and Choice does not open at all.
It should be pt.x + choice.getWidth()/2.
- relates to
- 
                    JDK-8225126 Test SetBoundsPaintTest.html failed on Windows when desktop is scaled -           
- Resolved
 
-