-
Bug
-
Resolution: Fixed
-
P3
-
8u40
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8129921 | 8u60 | Kevin Rushforth | P3 | Resolved | Fixed |
public class DottedBorderWrong extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
Group group = new Group();
Scene scene = new Scene(group);
primaryStage.setWidth(500);
primaryStage.setHeight(500);
Pane pane = new Pane();
pane.setPrefSize(350, 350);
pane.setLayoutX(55);
pane.setLayoutY(55);
pane.setStyle("-fx-border-width: 8; -fx-border-color: blue; -fx-border-style: dotted;");
group.getChildren().add(pane);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
- backported by
-
JDK-8129921 Dotted Border clipped to the outside
- Resolved
- relates to
-
JDK-8094400 Dashed border computation incorrect
- Resolved
-
JDK-8096687 Dashed border with width is broken
- Resolved
-
JDK-8096066 Region is not properly clipped when defined by a shape
- Resolved
-
JDK-8088259 Strokes: using Dashes with StrokeType Outside/Inside doesn't work well
- Open
-
JDK-8088335 [Region] scaled shape with centered or outer stroke is forced to inner
- Open
-
JDK-8089221 [Region] Stroked shapes rendered differently starting with 8u40
- Closed