the issue is quite similar to JDK-8163950.
please run the following code:
import javafx.application.Application;
import javafx.scene.*;
import javafx.scene.control.Slider;
import javafx.stage.Stage;
import javafx.geometry.Insets;
public class SliderTest extends Application {
@Override
public void start(Stage stage) {
Group root = new Group();
Scene scene = new Scene(root, 200, 150);
stage.setScene(scene);
Slider s = new Slider(2., -2., 0.25);
s.setPadding(new Insets(20, 20, 20, 20));
s.setShowTickLabels(true);
s.setShowTickMarks(true);
s.setMajorTickUnit(0.5);
s.setMinorTickCount(10);
root.getChildren().add(s);
stage.show();
}
public static void main(String[] args) { launch(args); }
}
the invalid slider will appear (no exceptions thrown), please see the attached screenshot (JDK9 b129, Windows 7)
the issue is also reproducible with JDK8 b132
please run the following code:
import javafx.application.Application;
import javafx.scene.*;
import javafx.scene.control.Slider;
import javafx.stage.Stage;
import javafx.geometry.Insets;
public class SliderTest extends Application {
@Override
public void start(Stage stage) {
Group root = new Group();
Scene scene = new Scene(root, 200, 150);
stage.setScene(scene);
Slider s = new Slider(2., -2., 0.25);
s.setPadding(new Insets(20, 20, 20, 20));
s.setShowTickLabels(true);
s.setShowTickMarks(true);
s.setMajorTickUnit(0.5);
s.setMinorTickCount(10);
root.getChildren().add(s);
stage.show();
}
public static void main(String[] args) { launch(args); }
}
the invalid slider will appear (no exceptions thrown), please see the attached screenshot (JDK9 b129, Windows 7)
the issue is also reproducible with JDK8 b132