On Tue, 17 Dec 2019 23:02:02 GMT, Thiago Milczarek Sayao <tsa...@openjdk.org> 
wrote:

>> https://bugs.openjdk.java.net/browse/JDK-8232811
>> 
>> This one was hard to tackle.
>> 
>> ./gradlew -PFULL_TEST=true -PUSE_ROBOT=true :systemTests:test --tests 
>> test.robot.javafx.scene.dialog.DialogWithOwnerSizingTest
> 
> The pull request has been updated with 1 additional commit.

tests/system/src/test/java/test/robot/javafx/scene/dialog/DialogWithOwnerSizingTest.java
 line 124:

> 123: 
> 124:             stage.initStyle(StageStyle.UNDECORATED);
> 125:             stage.setOnShown(e -> 
> Platform.runLater(startupLatch::countDown));

Since this is a Robot test that relies on the Stage being in front of other 
windows, can you add the following?

    stage.setAlwaysOnTop(true);

-------------

PR: https://git.openjdk.java.net/jfx/pull/63

Reply via email to