On 7/24/2013 2:55 AM, Felix Bembrick wrote:
Windows 7 64-bit here.
On this platform, JavaFX web component is compiled without JIT support
for JavaScript:
https://javafx-jira.kenai.com/browse/RT-24998
It explains why it is slow, but it doesn't explain rendering artifacts.
Thanks,
Artem
On 24 July 2013 08:53, Richard Bair <richard.b...@oracle.com> wrote:
I've filed https://javafx-jira.kenai.com/browse/RT-31885, lets see how
that turns out.
Richard
On Jul 23, 2013, at 3:49 PM, Richard Bair <richard.b...@oracle.com> wrote:
Doh, that's just what you said :-)
On Jul 23, 2013, at 3:49 PM, Richard Bair <richard.b...@oracle.com>
wrote:
I'm not seeing anything at all, beyond a fuzzy background image
(similar app to yours):
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);
}
}
I'm on Mac. What OS are you running on?