-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
1.1.1, 1.2.0
-
sparc
-
solaris_2.5.1, solaris_9
[katakai 5/7/97 JST]
Solaris only - Dropped japanese text from List to TextField
becomes garbage on JDK1.1.1.
1) Start HotJava1.0
2) Open following URL
http://ministop.japan/private/data/JAVA/hjb_l10n/sqa/applet/applet1/sample_ja.html
3) Select a item of Japanese on the List
4) Drag and Drop from List to TextField or TextArea
The problem happens on both S2.5.1 and S2.6.
[xueming.shen@Japan 1997-12-10]
public class SimpleList extends Frame {
public SimpleList (String title){
super(title);
List list = new List(10);
list.addItem(" ab ");
list.addItem(" ");
list.addItem(" ");
list.addItem(" a");
TextArea texta = new TextArea();
TextField textf = new TextField();
setLayout(new GridLayout(3,1));
add(list);
add(texta);
add(textf);
pack();
show();
}
public static void main(String args[]){
SimpleList simple = new SimpleList("List Item Drop");
}
}
Solaris only - Dropped japanese text from List to TextField
becomes garbage on JDK1.1.1.
1) Start HotJava1.0
2) Open following URL
http://ministop.japan/private/data/JAVA/hjb_l10n/sqa/applet/applet1/sample_ja.html
3) Select a item of Japanese on the List
4) Drag and Drop from List to TextField or TextArea
The problem happens on both S2.5.1 and S2.6.
[xueming.shen@Japan 1997-12-10]
public class SimpleList extends Frame {
public SimpleList (String title){
super(title);
List list = new List(10);
list.addItem(" ab ");
list.addItem(" ");
list.addItem(" ");
list.addItem(" a");
TextArea texta = new TextArea();
TextField textf = new TextField();
setLayout(new GridLayout(3,1));
add(list);
add(texta);
add(textf);
pack();
show();
}
public static void main(String args[]){
SimpleList simple = new SimpleList("List Item Drop");
}
}
- duplicates
-
JDK-4043628 title of Tear-Off menu shows garbage when the label is japanese
-
- Closed
-