import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.web.WebView;
import javafx.stage.Stage;

//using https://google-diff-match-patch.googlecode.com/svn-history/r40/trunk/javascript/diff_match_patch.js
//using http://codemirror.net/codemirror.zip
public class J8141399 extends Application {
    static String url2Load = null;
    @Override
    public void start(Stage primaryStage) {
        WebView browser = new WebView();
        browser.getEngine().load(this.getClass().getResource("html/my.html").toExternalForm());
        Scene scene = new Scene(browser,1024,800);
        primaryStage.setTitle("Java Version : " + System.getProperty("java.version"));
        primaryStage.setScene(scene);
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
} 