import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.TextField;
import javafx.stage.Stage;

public class TextFieldBug extends Application { 

	@Override 
	public void start(Stage primaryStage) throws Exception { 
		primaryStage.setScene(new Scene(new TextField("some text another string"))); 
		primaryStage.show(); 
	} 

	public static void main(String[] args) { 
		launch(args); 
	} 
} 
