-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.4.2
-
x86
-
linux
FULL PRODUCT VERSION :
java version "1.4.2"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2-b28)
Java HotSpot(TM) Client VM (build 1.4.2-b28, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Linux twain 2.4.20-20.9 #1 Mon Aug 18 11:27:43 EDT 2003 i686 athlon i386 GNU/Linux
A DESCRIPTION OF THE PROBLEM :
On Linux, setting the background color of a Panel incorrectly changes the background color of buttons contained in the panel, often making their text unreadable.
This error does not occur on Windows.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Compile and following program wit:
javac ButtonTest.java
java ButtonTest
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Expect button text to be visible.
ACTUAL -
Button shows up black-on-black. Compare with behavior on Windows which does *not* change the background color of the buttons to match the panel.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.awt.*;
public class ButtonTest extends Panel
{
public ButtonTest()
{
setBackground(Color.black);
add(new Button("Test"));
}
public static void main(String[] args)
{
ButtonTest b = new ButtonTest();
Frame f = new Frame();
f.add(b);
f.setSize(100,100);
f.show(); // Deprecated call necessary for testing against 1.1
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Write once, test everywhere.
java version "1.4.2"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2-b28)
Java HotSpot(TM) Client VM (build 1.4.2-b28, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Linux twain 2.4.20-20.9 #1 Mon Aug 18 11:27:43 EDT 2003 i686 athlon i386 GNU/Linux
A DESCRIPTION OF THE PROBLEM :
On Linux, setting the background color of a Panel incorrectly changes the background color of buttons contained in the panel, often making their text unreadable.
This error does not occur on Windows.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Compile and following program wit:
javac ButtonTest.java
java ButtonTest
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Expect button text to be visible.
ACTUAL -
Button shows up black-on-black. Compare with behavior on Windows which does *not* change the background color of the buttons to match the panel.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.awt.*;
public class ButtonTest extends Panel
{
public ButtonTest()
{
setBackground(Color.black);
add(new Button("Test"));
}
public static void main(String[] args)
{
ButtonTest b = new ButtonTest();
Frame f = new Frame();
f.add(b);
f.setSize(100,100);
f.show(); // Deprecated call necessary for testing against 1.1
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Write once, test everywhere.
- duplicates
-
JDK-6371452 Spec issues with foreground/background inheritance and defaults
-
- Closed
-