package bugs.css; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.Menu; import javafx.scene.control.MenuBar; import javafx.scene.control.MenuItem; import javafx.scene.control.ToolBar; import javafx.scene.layout.BorderPane; import javafx.scene.layout.VBox; import javafx.stage.Stage; /** * Test program to show a bug in the CSS interpretation. * If run with the latest JavaFX 8.0.0-ea-b65 preview the * gradients of the tool and menu bar are horizontal instead * of vertical. With the older JavaFX 7 they are ok. It * is astonishing that you also get the correct result * if you run with -Dprism.order=j2d */ public class CSSBug extends Application { private static final double width = 600; private static final double height = 400; private Button resetButton; public static void main(String[] args) { launch(args); } @Override public void start(final Stage stage) { System.out.println("javafx.runtime.version: " + System.getProperties().get("javafx.runtime.version")); Scene scene = new Scene(new BorderPane(), width, height); scene.getStylesheets().add(getClass().getResource("style.css").toExternalForm()); BorderPane rootPane = (BorderPane)scene.getRoot(); VBox vBox = new VBox(); MenuBar menuBar = new MenuBar(); ToolBar toolBar = new ToolBar(); vBox.getChildren().addAll(menuBar, toolBar); rootPane.setTop(vBox); MenuItem open = new MenuItem("Open"); MenuItem exit = new MenuItem("Exit"); Menu menuFile = new Menu("File"); menuFile.getItems().addAll(open, exit); menuBar.getMenus().addAll(menuFile); resetButton = new Button("Reset"); toolBar.getItems().add(resetButton); stage.setTitle(getClass().getSimpleName()); stage.setScene(scene); stage.show(); } }