We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f7088f commit 275c463Copy full SHA for 275c463
test/jdk/javax/swing/JSlider/bug4382876.java
@@ -76,6 +76,7 @@ public static void main(String[] args) throws Exception {
76
upFail = true;
77
}
78
});
79
+ r.keyRelease(KeyEvent.VK_PAGE_UP);
80
if (upFail) {
81
writeFailImage();
82
throw new RuntimeException("Slider value did NOT change with PAGE_UP");
@@ -87,6 +88,7 @@ public static void main(String[] args) throws Exception {
87
88
downFail = true;
89
90
91
+ r.keyRelease(KeyEvent.VK_PAGE_DOWN);
92
if (downFail) {
93
94
throw new RuntimeException("Slider value did NOT change with PAGE_DOWN");
0 commit comments