/* * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. */ package jira; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.web.WebView; import javafx.stage.Stage; public class RT33768 extends Application { @Override public void start(Stage stage) { WebView web = new WebView(); web.getEngine().load("http://instagram.com"); web.setPrefSize(800, 800); Scene scene = new Scene(web); stage.setTitle("Hello WebView"); stage.setScene(scene); stage.show(); } public static void main(String[] args) { Application.launch(args); } }