import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.layout.VBox;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javafx.stage.Stage;

public class WebViewSample extends Application {
	@Override
	public void start(Stage stage) {
		stage.setTitle("Pie Chart Test");
		stage.setWidth(900);
		stage.setHeight(800);
		Scene scene = new Scene(new Group());
		VBox root = new VBox();    
		final WebView browser = new WebView();
		final WebEngine webEngine = browser.getEngine();	
		
		webEngine.load("https://fiddle.sencha.com/#fiddle/1vd7&view/editor");		

		root.getChildren().addAll(browser);
		scene.setRoot(root);

		stage.setScene(scene);
		stage.show();
	}

	public static void main(String[] args) {		
		launch(args);
		
	}
}