Closed
Bug 215168
Opened 22 years ago
Closed 19 years ago
crash if no focus lost event in the applet before key press in a textfield
Categories
(Core Graveyard :: Java: OJI, defect)
Tracking
(Not tracked)
RESOLVED
EXPIRED
People
(Reporter: tvertse, Assigned: joshua.xia)
Details
(Keywords: crash)
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US; rv:1.0.2) Gecko/20030106
Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US; rv:1.0.2) Gecko/20030106
I have an applet that uses a KeyListener. When the applets starts, the focus is
set to the Canvas object. When the mouse leaves the applet's area, the applet
does not lose the focus. If I click on a HTML form's textfield (on the same
page) and press a key, the browser crash.
Here is a simple example: The HTML document contains an applet and a HTML form
with a textfield. If you click on the applet, the focus changes to the MyCanvas
object and the canvas is repainted.
In Netscape 7.1, this focus problem also exist, although the browser does not
crash. In Netscape 7.1, the applet's KeyListener catched key pressing and the
text field stayed empty.
#########################focustest.html###############################
<html>
<head><title>FocusTestApplet</title>
</head>
<body>
<p ALIGN=CENTER>
<applet CODE="FocusTestApplet" WIDTH=230 HEIGHT=200 NAME="FocusTestApplet">
</applet>
</p>
<form>
<input type="textfield" value=""/>
</body>
</html>
###############################FocusTestApplet.java########################
/*
* FocusTestApplet.java
*
* This applet demonstrates a focus bug in Netscape, under OS X 10.2, MRJ 3.3
*/
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class MyCanvas extends Canvas implements KeyListener, MouseListener {
private int x = 0;
private int y = 0;
public MyCanvas() {
addKeyListener(this);
addMouseListener(this);
}
public void setX(int x) {
this.x = x;
}
public void setY(int y) {
this.y = y;
}
public void paint(Graphics g) {
setBackground(Color.black);
g.setColor(Color.red);
g.drawOval(x, y, 10,10);
}
public void keyPressed(KeyEvent e) {
}
public void keyReleased(KeyEvent e) {
System.err.println("Released key on canvas:"+e.getKeyChar());
}
public void keyTyped(KeyEvent e) {
}
public void mouseClicked(MouseEvent e) { }
public void mouseEntered(MouseEvent e) {
System.err.println("the mouse has entered to the canvas");
}
public void mouseExited(MouseEvent e) {
System.err.println("the mouse has exited from the canvas");
}
public void mousePressed(MouseEvent e) {
System.err.println("Canvas.requestFocus");
requestFocus();
setX(e.getX());
setY(e.getY());
repaint();
}
public void mouseReleased(MouseEvent e) {
}
}
/**
*
* @author Tamas Vertse
*/
public class FocusTestApplet extends JApplet {
private javax.swing.JPanel panel;
private MyCanvas canvas;
/** Initialization method that will be called after the applet is loaded
* into the browser.
*/
public void init() {
panel = new JPanel();
BorderLayout bl = new BorderLayout();
panel.setLayout(bl);
canvas = new MyCanvas();
canvas.setSize(this.getSize().width,this.getSize().height);
panel.add(canvas,bl.CENTER);
getContentPane().add(panel);
this.validate();
}
}
####################################################################
Reproducible: Always
Steps to Reproduce:
1. Load above applet.
2. Click on the applet's canvas.
3. Click on the textfield on HTML form.
4. Press any key.
Actual Results:
Browser crashed.
Expected Results:
Display the character in the text field.
Date/Time: 2003-08-05 18:54:12 +0200
OS Version: 10.2.6 (Build 6L60)
Host: Ferenc-Csizmadias-Computer.local.
Command: Mozilla
PID: 550
Exception: EXC_BAD_ACCESS (0x0001)
Codes: KERN_INVALID_ADDRESS (0x0001) at 0x9aaaffc3
Thread 0 Crashed:
#0 0x030f1500 in UnicodeNotFromInputMethodHandler__19nsMacTSMMessagePumpFPC6AED
#1 0x91b56570 in _Z20aeDispatchAppleEventPK6AEDescPS_mPh
#2 0x91b5a8e4 in _Z10sendToSelfPK6AEDescPS_ll
#3 0x91b58124 in AESendMessage
#4 0x91b5a4e4 in aeSend
#5 0x96aa68cc in AESend
#6 0x96a28ea4 in _Z20HandleTextInputEventP14OpaqueEventRef
#7 0x969b2898 in
_Z29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
#8 0x969a2d0c in DispatchEventToHandlers
#9 0x969a2fbc in SendEventToEventTargetInternal
#10 0x969b5494 in SendEventToEventTarget
#11 0x96a389a4 in SendTSMEvent
#12 0x969fd32c in SendUnicodeTextAEToUnicodeDoc
#13 0x96a04194 in utDeliverTSMEvent
#14 0x96a388b0 in TSMKeyEvent
#15 0x969e1120 in TSMProcessRawKeyEvent
#16 0x969f9b10 in _Z27HandleCompatibilityKeyEventP14OpaqueEventRef
#17 0x969bb81c in
_Z25CompatibilityEventHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
#18 0x969a2c54 in DispatchEventToHandlers
#19 0x969a2fbc in SendEventToEventTargetInternal
#20 0x969a63d0 in SendEventToEventTargetWithOptions
#21 0x969ece14 in _Z19HandleKeyboardEventP14OpaqueEventRefm
#22 0x969b288c in
_Z29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
#23 0x969a2d0c in DispatchEventToHandlers
#24 0x969a2fbc in SendEventToEventTargetInternal
#25 0x969b5494 in SendEventToEventTarget
#26 0x969b7258 in _Z22ToolboxEventDispatcherP14OpaqueEventRef
#27 0x969c8740 in CallEventDispatchHook
#28 0x969b3c90 in TryEventDispatcher
#29 0x969a4570 in GetOrPeekEvent
#30 0x969a4330 in GetNextEventMatchingMask
#31 0x969a8054 in WNEInternal
#32 0x969adf0c in WaitNextEvent
#33 0x030e43c8 in GetEvent__16nsMacMessagePumpFR11EventRecord
#34 0x030e42bc in DoMessagePump__16nsMacMessagePumpFv
#35 0x030e3bdc in Run__10nsAppShellFv
#36 0x0171ab0c in Run__17nsAppShellServiceFv
#37 0x001e500c in main1__FiPPcP11nsISupports
#38 0x001e5a4c in main
Thread 1:
#0 0x9000512c in syscall
#1 0x90515d0c in BSD_waitevent
#2 0x905156dc in CarbonSelectThreadFunc
#3 0x90020d28 in _pthread_body
Thread 2:
#0 0x9003ea88 in semaphore_wait_signal_trap
#1 0x9003e8a4 in _pthread_cond_wait
#2 0x9051dbf0 in CarbonOperationThreadFunc
#3 0x90020d28 in _pthread_body
Thread 3:
#0 0x90042668 in semaphore_timedwait_signal_trap
#1 0x9003e894 in _pthread_cond_wait
#2 0x90232770 in TSWaitOnSemaphoreCommon
#3 0x9023b550 in TimerThread
#4 0x90020d28 in _pthread_body
Thread 4:
#0 0x9003ea88 in semaphore_wait_signal_trap
#1 0x9003e8a4 in _pthread_cond_wait
#2 0x90232754 in TSWaitOnSemaphoreCommon
#3 0x90247ecc in _Z15AsyncFileThreadPv
#4 0x90020d28 in _pthread_body
Thread 5:
#0 0x9003ea88 in semaphore_wait_signal_trap
#1 0x9003e8a4 in _pthread_cond_wait
#2 0x905259e0 in CarbonInetOperThreadFunc
#3 0x90020d28 in _pthread_body
Thread 6:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x928ec28c in JNI_CreateJavaVM_Impl
#3 0x928ec224 in JNI_CreateJavaVM_Impl
#4 0x928a51fc in JVM_GetClassMethodsCount
#5 0x90020d28 in _pthread_body
Thread 7:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283de9c in JVM_NewInstance
#3 0x9285eae4 in JVM_FillInStackTrace
#4 0x928647a0 in JVM_Send
#5 0x9290114c in JNI_CreateJavaVM_Impl
#6 0x928a51fc in JVM_GetClassMethodsCount
#7 0x90020d28 in _pthread_body
Thread 8:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec068c in 0x4ec068c
#9 0xa2843c38 in _ZTSSt13bad_exception
#10 0x92838bdc in JVM_CurrentTimeMillis
#11 0x92878c28 in JVM_FindClassFromClass
#12 0x92892c90 in JVM_IsSameClassPackage
#13 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#14 0x928787a0 in JVM_FindClassFromClass
#15 0x928a51fc in JVM_GetClassMethodsCount
#16 0x90020d28 in _pthread_body
Thread 9:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec05cc in 0x4ec05cc
#9 0x04ec05cc in 0x4ec05cc
#10 0xa2843c38 in _ZTSSt13bad_exception
#11 0x92838bdc in JVM_CurrentTimeMillis
#12 0x92878c28 in JVM_FindClassFromClass
#13 0x92892c90 in JVM_IsSameClassPackage
#14 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#15 0x928787a0 in JVM_FindClassFromClass
#16 0x928a51fc in JVM_GetClassMethodsCount
#17 0x90020d28 in _pthread_body
Thread 10:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283de9c in JVM_NewInstance
#3 0x92844e18 in JVM_GetClassLoader
#4 0x92844ba4 in JVM_GetClassLoader
#5 0x928a51fc in JVM_GetClassMethodsCount
#6 0x90020d28 in _pthread_body
Thread 11:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x9285eb40 in JVM_FillInStackTrace
#4 0x92903300 in JVM_InitProperties
#5 0x92903138 in JVM_InitProperties
#6 0x928787a0 in JVM_FindClassFromClass
#7 0x928a51fc in JVM_GetClassMethodsCount
#8 0x90020d28 in _pthread_body
Thread 12:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x9285eb40 in JVM_FillInStackTrace
#4 0x9288890c in JVM_StartThread
#5 0x92876c10 in JVM_FindLoadedClass
#6 0x928787a0 in JVM_FindClassFromClass
#7 0x928a51fc in JVM_GetClassMethodsCount
#8 0x90020d28 in _pthread_body
Thread 13:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0xa2843c38 in _ZTSSt13bad_exception
#9 0x92838bdc in JVM_CurrentTimeMillis
#10 0x92872ed4 in JVM_GetCPClassNameUTF
#11 0x9287a3b8 in JVM_GetCPMethodModifiers
#12 0x9299cd40 in jio_vsnprintf
#13 0x03492070 in CallVoidMethod__7JNIEnv_FP8_jobjectP10_jmethodIDe
#14 0x03491fbc in 0x3491fbc
#15 0x034925f0 in wait__16JavaMessageQueueFv
#16 0x034928cc in netscape_oji_JNIThread_run__FP7JNIEnv_P8_jobject
#17 0x04ec2668 in 0x4ec2668
#18 0xa2843c38 in _ZTSSt13bad_exception
#19 0x92838bdc in JVM_CurrentTimeMillis
#20 0x92878c28 in JVM_FindClassFromClass
#21 0x92892c90 in JVM_IsSameClassPackage
#22 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#23 0x928787a0 in JVM_FindClassFromClass
#24 0x928a51fc in JVM_GetClassMethodsCount
#25 0x90020d28 in _pthread_body
Thread 14:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec068c in 0x4ec068c
#9 0x04ec05cc in 0x4ec05cc
#10 0x04ec05cc in 0x4ec05cc
#11 0x04ec068c in 0x4ec068c
#12 0x04ec068c in 0x4ec068c
#13 0xa2843c38 in _ZTSSt13bad_exception
#14 0x92838bdc in JVM_CurrentTimeMillis
#15 0x92878c28 in JVM_FindClassFromClass
#16 0x92892c90 in JVM_IsSameClassPackage
#17 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#18 0x928787a0 in JVM_FindClassFromClass
#19 0x928a51fc in JVM_GetClassMethodsCount
#20 0x90020d28 in _pthread_body
Thread 15:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec068c in 0x4ec068c
#9 0xa2843c38 in _ZTSSt13bad_exception
#10 0x92838bdc in JVM_CurrentTimeMillis
#11 0x92878c28 in JVM_FindClassFromClass
#12 0x92892c90 in JVM_IsSameClassPackage
#13 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#14 0x928787a0 in JVM_FindClassFromClass
#15 0x928a51fc in JVM_GetClassMethodsCount
#16 0x90020d28 in _pthread_body
Thread 16:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec068c in 0x4ec068c
#9 0x04ec086c in 0x4ec086c
#10 0xa2843c38 in _ZTSSt13bad_exception
#11 0x92838bdc in JVM_CurrentTimeMillis
#12 0x92878c28 in JVM_FindClassFromClass
#13 0x92892c90 in JVM_IsSameClassPackage
#14 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#15 0x928787a0 in JVM_FindClassFromClass
#16 0x928a51fc in JVM_GetClassMethodsCount
#17 0x90020d28 in _pthread_body
Thread 17:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec086c in 0x4ec086c
#9 0xa2843c38 in _ZTSSt13bad_exception
#10 0x92838bdc in JVM_CurrentTimeMillis
#11 0x92878c28 in JVM_FindClassFromClass
#12 0x92892c90 in JVM_IsSameClassPackage
#13 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#14 0x928787a0 in JVM_FindClassFromClass
#15 0x928a51fc in JVM_GetClassMethodsCount
#16 0x90020d28 in _pthread_body
Thread 18:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec068c in 0x4ec068c
#9 0xa2843c38 in _ZTSSt13bad_exception
#10 0x92838bdc in JVM_CurrentTimeMillis
#11 0x92878c28 in JVM_FindClassFromClass
#12 0x92892c90 in JVM_IsSameClassPackage
#13 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#14 0x928787a0 in JVM_FindClassFromClass
#15 0x928a51fc in JVM_GetClassMethodsCount
#16 0x90020d28 in _pthread_body
Thread 19:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec068c in 0x4ec068c
#9 0x04ec05cc in 0x4ec05cc
#10 0xa2843c38 in _ZTSSt13bad_exception
#11 0x92838bdc in JVM_CurrentTimeMillis
#12 0x92878c28 in JVM_FindClassFromClass
#13 0x92892c90 in JVM_IsSameClassPackage
#14 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#15 0x928787a0 in JVM_FindClassFromClass
#16 0x928a51fc in JVM_GetClassMethodsCount
#17 0x90020d28 in _pthread_body
Thread 20:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec068c in 0x4ec068c
#9 0x04ec068c in 0x4ec068c
#10 0xa2843c38 in _ZTSSt13bad_exception
#11 0x92838bdc in JVM_CurrentTimeMillis
#12 0x92878c28 in JVM_FindClassFromClass
#13 0x92892c90 in JVM_IsSameClassPackage
#14 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#15 0x928787a0 in JVM_FindClassFromClass
#16 0x928a51fc in JVM_GetClassMethodsCount
#17 0x90020d28 in _pthread_body
Thread 21:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec068c in 0x4ec068c
#9 0x04ec068c in 0x4ec068c
#10 0xa2843c38 in _ZTSSt13bad_exception
#11 0x92838bdc in JVM_CurrentTimeMillis
#12 0x92878c28 in JVM_FindClassFromClass
#13 0x92892c90 in JVM_IsSameClassPackage
#14 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#15 0x928787a0 in JVM_FindClassFromClass
#16 0x928a51fc in JVM_GetClassMethodsCount
#17 0x90020d28 in _pthread_body
Thread 22:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec068c in 0x4ec068c
#9 0x04ec05cc in 0x4ec05cc
#10 0x04ec05cc in 0x4ec05cc
#11 0x04ec068c in 0x4ec068c
#12 0x04ec068c in 0x4ec068c
#13 0xa2843c38 in _ZTSSt13bad_exception
#14 0x92838bdc in JVM_CurrentTimeMillis
#15 0x92878c28 in JVM_FindClassFromClass
#16 0x92892c90 in JVM_IsSameClassPackage
#17 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#18 0x928787a0 in JVM_FindClassFromClass
#19 0x928a51fc in JVM_GetClassMethodsCount
#20 0x90020d28 in _pthread_body
Thread 23:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec068c in 0x4ec068c
#9 0xa2843c38 in _ZTSSt13bad_exception
#10 0x92838bdc in JVM_CurrentTimeMillis
#11 0x92878c28 in JVM_FindClassFromClass
#12 0x92892c90 in JVM_IsSameClassPackage
#13 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#14 0x928787a0 in JVM_FindClassFromClass
#15 0x928a51fc in JVM_GetClassMethodsCount
#16 0x90020d28 in _pthread_body
Thread 24:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec068c in 0x4ec068c
#9 0x04ec05cc in 0x4ec05cc
#10 0x04ec086c in 0x4ec086c
#11 0xa2843c38 in _ZTSSt13bad_exception
#12 0x92838bdc in JVM_CurrentTimeMillis
#13 0x92878c28 in JVM_FindClassFromClass
#14 0x92892c90 in JVM_IsSameClassPackage
#15 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#16 0x928787a0 in JVM_FindClassFromClass
#17 0x928a51fc in JVM_GetClassMethodsCount
#18 0x90020d28 in _pthread_body
Thread 25:
#0 0x90073c28 in mach_msg_trap
#1 0x90005f70 in mach_msg
#2 0x9283ddf4 in JVM_NewInstance
#3 0x92845d80 in JVM_ArrayCopy
#4 0x9285d620 in JVM_MonitorNotify
#5 0x9285e2f8 in JVM_MonitorWait
#6 0x04ec2668 in 0x4ec2668
#7 0x04ec068c in 0x4ec068c
#8 0x04ec086c in 0x4ec086c
#9 0xa2843c38 in _ZTSSt13bad_exception
#10 0x92838bdc in JVM_CurrentTimeMillis
#11 0x92878c28 in JVM_FindClassFromClass
#12 0x92892c90 in JVM_IsSameClassPackage
#13 0x9288cf70 in JVM_GetMethodIxExceptionTableEntry
#14 0x928787a0 in JVM_FindClassFromClass
#15 0x928a51fc in JVM_GetClassMethodsCount
#16 0x90020d28 in _pthread_body
PPC Thread State:
srr0: 0x030f1500 srr1: 0x0000d030 vrsave: 0x00000000
xer: 0x00000000 lr: 0x030f14e8 ctr: 0x0034bfe0 mq: 0x00000000
r0: 0x00000001 r1: 0xbfffe650 r2: 0x03126000 r3: 0x00707355
r4: 0xbfffe6c0 r5: 0x00000001 r6: 0xbfffe6a0 r7: 0x00000001
r8: 0x00000000 r9: 0x6e756c6c r10: 0x00000005 r11: 0xa1b50298
r12: 0x9aaaff9b r13: 0x00000000 r14: 0x00000000 r15: 0x00000001
r16: 0x00000000 r17: 0xbfffe890 r18: 0x00000000 r19: 0x00000000
r20: 0x00000003 r21: 0x00000000 r22: 0xbfffe820 r23: 0xbfffead0
r24: 0x00000000 r25: 0xbfffeac0 r26: 0x74737663 r27: 0x00000001
r28: 0x756e696d r29: 0xfffff954 r30: 0x03d57350 r31: 0x00000000
Comment 1•21 years ago
|
||
I can produce this behaviour in Netscape 7.1 for Mac OS X, but it does not
appear to affect the latest builds of Mozilla and Firefox for Mac OS X.
Comment 2•21 years ago
|
||
Correction: I was able to reproduce the crash in the latest Mozilla release for
Mac OS X by placing focus in the HTML form field and typing the right arrow key
on the keyboard.
Not crash.
But the character cannot be input to the text field.
Mac OS X 10.3.7
Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; ja-JP; rv:1.8b) Gecko/20050130
Firefox/1.0+
Comment 4•19 years ago
|
||
This is an automated message, with ID "auto-resolve01".
This bug has had no comments for a long time. Statistically, we have found that
bug reports that have not been confirmed by a second user after three months are
highly unlikely to be the source of a fix to the code.
While your input is very important to us, our resources are limited and so we
are asking for your help in focussing our efforts. If you can still reproduce
this problem in the latest version of the product (see below for how to obtain a
copy) or, for feature requests, if it's not present in the latest version and
you still believe we should implement it, please visit the URL of this bug
(given at the top of this mail) and add a comment to that effect, giving more
reproduction information if you have it.
If it is not a problem any longer, you need take no action. If this bug is not
changed in any way in the next two weeks, it will be automatically resolved.
Thank you for your help in this matter.
The latest beta releases can be obtained from:
Firefox: http://www.mozilla.org/projects/firefox/
Thunderbird: http://www.mozilla.org/products/thunderbird/releases/1.5beta1.html
Seamonkey: http://www.mozilla.org/projects/seamonkey/
Comment 5•19 years ago
|
||
This bug has been automatically resolved after a period of inactivity (see above
comment). If anyone thinks this is incorrect, they should feel free to reopen it.
Status: UNCONFIRMED → RESOLVED
Closed: 19 years ago
Resolution: --- → EXPIRED
You need to log in
before you can comment on or make changes to this bug.
Description
•