JavaFX Web browser using integrated webkit of the JVM
@FXML WebView webView;
webView.getEngine()
webEngine.load("http://localhost:8001/index.html");
webEngine.loadContent("<html><head><title>IWH</title></head><body><h1>test</h1><script>alert('toto');</script></body></html>");
webView.getEngine().getHistory().go(-1);
URL.setURLStreamHandlerFactory(new MyURLStreamHandlerFactory());
JSObject window = (JSObject) webEngine.executeScript("window");