Three applets differs only in java_version
import javax.swing.*;
public class TinyApplet extends JApplet {
}
<html>
<body>
<applet code="TinyApplet" codebase="." width="100" height="100"
></applet>
<applet code="TinyApplet" codebase="." width="100" height="100"
java_version="1.5.0*"></applet>
<applet code="TinyApplet" codebase="." width="100" height="100"
java_version="1.4.2*"></applet>
</boby></html>
if 6u10 is the only installed jre, all three applets should run in just one 6u10 subordinate jvm.
What observed in the current b10 is that three 6u10 jvms launched.
See also the test cases from 6644932 when fixing this bug.