-
Bug
-
Resolution: Fixed
-
P2
-
8
The following fails to render anything beyond the initial blurry background image. Maybe the JS engine dies? Not sure.
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
/**
*/
public class HelloWebView extends Application {
@Override public void start(Stage stage) throws Exception {
WebView web = new WebView();
web.getEngine().load("http://famo.us/");
Scene scene = new Scene(web);
stage.setScene(scene);
stage.setTitle("HelloWebView");
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
/**
*/
public class HelloWebView extends Application {
@Override public void start(Stage stage) throws Exception {
WebView web = new WebView();
web.getEngine().load("http://famo.us/");
Scene scene = new Scene(web);
stage.setScene(scene);
stage.setTitle("HelloWebView");
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
- duplicates
-
JDK-8115173 WebView renders famo.us incorrectly on Ubuntu 12.04
-
- Closed
-
- is blocked by
-
JDK-8116399 Yandex Maps are broken after sync with WebKit trunk
-
- Closed
-
-
JDK-8091705 Implement WebView 3D transforms
-
- Open
-
- relates to
-
JDK-8101730 Implement and enable accelerated compositing to improve WebView rendering performance
-
- Resolved
-