# HG changeset patch # User psadhukhan # Date 1573541949 -19800 # Node ID 571089680cb28b3c6399f3a95e6ebcb4593b792c # Parent 7a5060f0039f318154005cd4332b8debface4db1 8233910: java/awt/ColorClass/AlphaColorTest.java is failing intermittently in nightly lnux-x64 system Reviewed-by: serb, prr diff -r 7a5060f0039f -r 571089680cb2 test/jdk/java/awt/ColorClass/AlphaColorTest.java --- a/test/jdk/java/awt/ColorClass/AlphaColorTest.java Fri Nov 08 13:16:27 2019 +0530 +++ b/test/jdk/java/awt/ColorClass/AlphaColorTest.java Tue Nov 12 12:29:09 2019 +0530 @@ -24,7 +24,7 @@ /** * @test * @key headful - * @bug 8204931 8227392 8224825 + * @bug 8204931 8227392 8224825 8233910 * @summary test alpha colors are blended with background. */ @@ -83,6 +83,8 @@ }; Color color = new Color(255, 255, 255, 127); frame.add("Center", new AlphaColorTest(color)); + frame.setUndecorated(true); + frame.setLocationRelativeTo(null); frame.pack(); frame.setVisible(true); }