Closed
Bug 108019
Opened 23 years ago
Closed 23 years ago
Java TextField Displayed Multiple Times on Mac OS X
Categories
(Core Graveyard :: Java: OJI, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: mozilla, Assigned: bnesse)
References
()
Details
From Bugzilla Helper:
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)(Macintosh OS X bug
filed from a Windows computer)
BuildID: 20011022
The Java applet displayed at http://segal.org/TextFieldDisplay/index.html with
source code given here illustrates a problem with display of Java applets on
Netscape 6.2 for OS 10.1 using the Java Plugin:
The Java plug-in is the beta version 1.0d3 of the Mozilla OS X Java Plugin that
was obtained from: http://homepage.mac.com/pcbeard/MRJPluginCarbon-1.0d3.sit.
The MRJPlugin.jar and MRJPluginCarbon files were put in the /Library/Internet
Plug-Ins folder.
The problem is seen when opening the page with this applet and then scrolling
the page up and down. Extra copies of the TextField are displayed on the
page. I have not seen this behavior with other Java components. This does not
happen in Internet Explorer 5.1.2 on OS 10.1.
Reproducible: Always
Steps to Reproduce:
Compile and run the following Java code or run it from
http://segal.org/TextFieldDisplay/index.html . Then scroll the page up and down.
import java.applet.*;
import java.awt.*;
public class ExtraTextFields extends Applet {
public void init()
{
TextField tf = new TextField(10);
add(tf);
}
} // END OF Class ExtraTextFields
Actual Results: Extra copies of the TextField are displayed on the page.
Expected Results: No extra copies of the TextField should be displayed on the
page.
Comment 1•23 years ago
|
||
Confirming this issue in the Nov 15 th build (2001-11-15-06).
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 2•23 years ago
|
||
This is an asynchronous drawing problem, and is dependent on a fix for bug #104445.
Status: NEW → ASSIGNED
Depends on: 104445
Assignee | ||
Comment 4•23 years ago
|
||
Bug 104445 has been checked in. This WFM with the MRJ Carbon plugin V1.0d8.
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
wfm on mac os 10.1.3 with MJR v1.0b2 (2002-04-16-03-TRUNK)
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•