-
Bug
-
Resolution: Fixed
-
P3
-
8
-
8.0b109
Code :
@Override
public void start(Stage stage) throws Exception {
ListView lv = new ListView();
lv.setOrientation(Orientation.VERTICAL);
for (int i = 0; i < 10; i++) {
lv.getItems().add(new Rectangle(50, 170));
}
stage.setScene(new Scene(lv, 100, 100));
stage.show();
}
try to do navigate there using page up / page down
Actual for both, vertical and horizontal orientation.
Affected tests:
graphics/api/control/ListViewTest1Test.java
graphics/api/control/ListViewTest2Test.java
@Override
public void start(Stage stage) throws Exception {
ListView lv = new ListView();
lv.setOrientation(Orientation.VERTICAL);
for (int i = 0; i < 10; i++) {
lv.getItems().add(new Rectangle(50, 170));
}
stage.setScene(new Scene(lv, 100, 100));
stage.show();
}
try to do navigate there using page up / page down
Actual for both, vertical and horizontal orientation.
Affected tests:
graphics/api/control/ListViewTest1Test.java
graphics/api/control/ListViewTest2Test.java