This code replicates the problem I am having with some web sites. You will notice that the entire page is not shown. Yet a few days ago everything was working perfectly. I would like to understand what is happening. I am no longer able to see some videos, especially those from vimeo.
public class WebViewEx extends Application {
public static void main(String[] args) {
launch(args);
}
public void start(Stage primaryStage) {
primaryStage.setTitle("JavaFX WebView");
WebView webView = new WebView();
webView.getEngine().load("https://vimeo.com/761107839");
VBox vBox = new VBox(webView);
Scene scene = new Scene(vBox, 960, 600);
primaryStage.setScene(scene);
primaryStage.show();
}
}