-
Bug
-
Resolution: Fixed
-
P4
-
1.0.1
-
1.1
-
sparc
-
solaris_2.4
-
Not verified
Win95 (or Win32?) only: the following applet, when run on appletviewer,
shows black text on gray background the first time is displayed on screen.
Covering part of the window and then re-exposing results in the correct
background and foreground colors (for the re-exposed portion).
-------- Tmp.java --------
import java.awt.*;
public class Tmp extends java.applet.Applet {
public void paint(Graphics g) {
setBackground(Color.yellow);
setForeground(Color.blue);
g.drawString("This should be blue text on a yellow background.",
10, 30);
}
}
-------- Tmp.html --------
<html>
<head>
<title>Tmp</title>
</head>
<body>
<applet code="Tmp.class" width=360 height=200>
</applet>
</body>
</html>
shows black text on gray background the first time is displayed on screen.
Covering part of the window and then re-exposing results in the correct
background and foreground colors (for the re-exposed portion).
-------- Tmp.java --------
import java.awt.*;
public class Tmp extends java.applet.Applet {
public void paint(Graphics g) {
setBackground(Color.yellow);
setForeground(Color.blue);
g.drawString("This should be blue text on a yellow background.",
10, 30);
}
}
-------- Tmp.html --------
<html>
<head>
<title>Tmp</title>
</head>
<body>
<applet code="Tmp.class" width=360 height=200>
</applet>
</body>
</html>