FULL PRODUCT VERSION :
java version "1.6.0_24"
Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
Java HotSpot(TM) Server VM (build 19.1-b02, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Linux cdsjgp 2.6.24-24-generic #1 SMP Wed Apr 15 15:11:35 UTC 2009 x86_64 GNU/Linux
Ubuntu 8.4
Windows
etc.
A DESCRIPTION OF THE PROBLEM :
All labels, headings etc. containing HTML tags disappear when restarting an applet.
Could be related to BUG 7022115 and BUG 7026406.
Using JRE 1.6.0.20 as the java plugin everything works just fine. Upgrading to 1.6.0.22 or 1.6.0.24 causes the texts to disappear.
REGRESSION. Last worked in version 6
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
- Include the applet in a webpage
- Load the page in a browser running JRE 1.6.0.22 or higher
- Notice the text being shown just fine
- Open a new tab in the browser.
- Close the old tab.
- Load the page in the new tab.
- Notice the text NOT being shown.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
The text should be shown upon restart/reload of the applet.
ACTUAL -
The text is NOT shown upon restart/reload of the applet.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
The following helloworld-applet taken from your own swing tutorial illustrates the problem:
import javax.swing.JApplet;
import javax.swing.SwingUtilities;
import javax.swing.JLabel;
public class HelloWorld extends JApplet {
/**
*
*/
private static final long serialVersionUID = 5145581807071829630L;
//Called when this applet is loaded into the browser.
public void init() {
//Execute a job on the event-dispatching thread; creating this applet's GUI.
try {
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
JLabel lbl = new JLabel("<html>Hello World with html</html>");
add(lbl);
}
});
} catch (Exception e) {
System.err.println("createGUI didn't complete successfully");
}
}
}
The only change to the code compared to the tutorial is the addition of the html tags.
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Downgrading to JRE 1.6.0.20
java version "1.6.0_24"
Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
Java HotSpot(TM) Server VM (build 19.1-b02, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Linux cdsjgp 2.6.24-24-generic #1 SMP Wed Apr 15 15:11:35 UTC 2009 x86_64 GNU/Linux
Ubuntu 8.4
Windows
etc.
A DESCRIPTION OF THE PROBLEM :
All labels, headings etc. containing HTML tags disappear when restarting an applet.
Could be related to BUG 7022115 and BUG 7026406.
Using JRE 1.6.0.20 as the java plugin everything works just fine. Upgrading to 1.6.0.22 or 1.6.0.24 causes the texts to disappear.
REGRESSION. Last worked in version 6
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
- Include the applet in a webpage
- Load the page in a browser running JRE 1.6.0.22 or higher
- Notice the text being shown just fine
- Open a new tab in the browser.
- Close the old tab.
- Load the page in the new tab.
- Notice the text NOT being shown.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
The text should be shown upon restart/reload of the applet.
ACTUAL -
The text is NOT shown upon restart/reload of the applet.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
The following helloworld-applet taken from your own swing tutorial illustrates the problem:
import javax.swing.JApplet;
import javax.swing.SwingUtilities;
import javax.swing.JLabel;
public class HelloWorld extends JApplet {
/**
*
*/
private static final long serialVersionUID = 5145581807071829630L;
//Called when this applet is loaded into the browser.
public void init() {
//Execute a job on the event-dispatching thread; creating this applet's GUI.
try {
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
JLabel lbl = new JLabel("<html>Hello World with html</html>");
add(lbl);
}
});
} catch (Exception e) {
System.err.println("createGUI didn't complete successfully");
}
}
}
The only change to the code compared to the tutorial is the addition of the html tags.
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Downgrading to JRE 1.6.0.20