-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
8u65
-
x86
-
windows_8
FULL PRODUCT VERSION :
java version "1.8.0_66"
Java(TM) SE Runtime Environment (build 1.8.0_66-b18)
Java HotSpot(TM) 64-Bit Server VM (build 25.66-b18, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Windows 10 Home 1511 Build 10586.63
A DESCRIPTION OF THE PROBLEM :
I'm testing JavaFx and I tried a simple HtmlEditor demo. Everything seems ok, the editors appears, I can type text, but if I click on a pull down menu (ex. to change the font size) the application freeze, I get a black rectangle where the menu is suppose to appear.
I'm on Windows 10 64Bits, JDK 8u65, with IntelliJ
I Tested on another windows computer, with a fresh Java install same problem
I tested creating a Java application, and a JavaFx application same problem
I Tested on a mac (recent, bought 2 months ago), the demo works
perfectly
ADDITIONAL REGRESSION INFORMATION:
http://stackoverflow.com/questions/34865033/javafx-htmleditor-demo-freeze-on-windows-10-jdk-8u65
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
package Test;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.web.HTMLEditor;
import javafx.stage.Stage;
public class Test extends Application {
@Override
public void start(Stage stage) {
stage.setTitle("HTMLEditor Sample");
stage.setWidth(400);
stage.setHeight(300);
final HTMLEditor htmlEditor = new HTMLEditor();
htmlEditor.setPrefHeight(245);
Scene scene = new Scene(htmlEditor);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
---------- END SOURCE ----------
java version "1.8.0_66"
Java(TM) SE Runtime Environment (build 1.8.0_66-b18)
Java HotSpot(TM) 64-Bit Server VM (build 25.66-b18, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Windows 10 Home 1511 Build 10586.63
A DESCRIPTION OF THE PROBLEM :
I'm testing JavaFx and I tried a simple HtmlEditor demo. Everything seems ok, the editors appears, I can type text, but if I click on a pull down menu (ex. to change the font size) the application freeze, I get a black rectangle where the menu is suppose to appear.
I'm on Windows 10 64Bits, JDK 8u65, with IntelliJ
I Tested on another windows computer, with a fresh Java install same problem
I tested creating a Java application, and a JavaFx application same problem
I Tested on a mac (recent, bought 2 months ago), the demo works
perfectly
ADDITIONAL REGRESSION INFORMATION:
http://stackoverflow.com/questions/34865033/javafx-htmleditor-demo-freeze-on-windows-10-jdk-8u65
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
package Test;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.web.HTMLEditor;
import javafx.stage.Stage;
public class Test extends Application {
@Override
public void start(Stage stage) {
stage.setTitle("HTMLEditor Sample");
stage.setWidth(400);
stage.setHeight(300);
final HTMLEditor htmlEditor = new HTMLEditor();
htmlEditor.setPrefHeight(245);
Scene scene = new Scene(htmlEditor);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
---------- END SOURCE ----------
- duplicates
-
JDK-8132897 ComboBox hangs on Windows 10 when clicked while not in focus
- Resolved