-
Bug
-
Resolution: Fixed
-
P4
-
8u40
-
None
Sample code:
@Override
public void start(final Stage stage) throws Exception {
StackPane pane = new StackPane();
pane.setPadding(new Insets(10));
StackPane child = new StackPane();
child.setStyle("-fx-border-color:black;");
pane.getChildren().add(child);
stage.setScene(new Scene(pane, 300, 300));
stage.show();
}
- relates to
-
JDK-8096687 Dashed border with width is broken
- Resolved