chosho.kyo@japan 1998-09-05
(1) Working environments
OS : Solaris2.5.1 Japanese version
Browser : Netscape Communicator4.04J
Java Plug-in : Java Plug-in 1.1.1 g
JRE : JRE1.1.6 within Plug-in
Window : CDE
Japanese Input : Atok7
(2) Phenomenon
I attach an applet source named Applet2.java and two HTML files
named 013.html and 2Frame2.html below for reappearing the phenomenon.
Step1: Start NC with Java Plug-in.
Step2: Read 2Frame2.html.
Step3: Resize the NC several times before applet starts to run.
Step4: A bus error occurs and a core file is produced.
---------------<Applet2.java>----------------
import java.awt.*;
import java.applet.*;
public class Applet2 extends Applet
{
public void init()
{
setLayout(null);
setSize(426,266);
label1 = new java.awt.Label("This is just an Applet.");
label1.setBounds(48,48,321,75);
add(label1);
}
java.awt.Label label1;
}
---------------<013.html>----------------
<HTML>
<HEAD>
<TITLE>013.html</TITLE>
</HEAD>
<BODY>
<!--"CONVERTED_APPLET"-->
<!-- CONVERTER VERSION 1.0 -->
<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
WIDTH = 430 HEIGHT = 270
codebase="http://java.sun.com/products/plugin/1.1/jinstall-11-win32.cab#Ver
sion=1,1,0,0">
<PARAM NAME = CODE VALUE = "Applet2.class" >
<PARAM NAME="type" VALUE="application/x-java-applet;version=1.1">
<COMMENT>
<EMBED type="application/x-java-applet;version=1.1" java_CODE =
"Applet2.class" WIDTH = 430 HEIGHT = 270
pluginspage="http://java.sun.com/products/plugin/1.1/plugin-install.html">
<NOEMBED></COMMENT>
</NOEMBED></EMBED>
</OBJECT>
<!--
<APPLET CODE = "Applet2.class" WIDTH = 430 HEIGHT = 270 >
</APPLET>
-->
<!--"END_CONVERTED_APPLET"-->
</BODY>
</HTML>
---------------<2Frame2.html>----------------
<HTML>
<FRAMESET ROWS="50%,*">
<FRAME SRC="013.html">
<FRAME SRC="013.html">
</FRAMESET>
</HTML>