-
Bug
-
Resolution: Fixed
-
P4
-
5.0
-
beta
-
generic
-
generic
Name: iaR10016 Date: 04/09/2004
Filed By : J2SE-SQA [###@###.###
JDK : JDK1.5.0-b46, JDK1.4.2-b28
Platforms: all
Empty JComboBox drop-down list is unexpectedly high.
The following test example creates a JFrame with empty JCombobox:
--------- test.java ---------
import javax.swing.*;
public class test {
public static void main(String[] args) {
JFrame frame = new JFrame("JComboBox Test");
frame.getContentPane().add(new JComboBox());
frame.setSize(new java.awt.Dimension(400, 50));
frame.setVisible(true);
}
}
-----------------------------
Please, run the test and click JCombobox button to reproduce the failure.
This bug affects JCK1.5-runtime (b15) interactive test
api/javax_swing/interactive/JComboBoxTests.html#JComboBox[JComboBoxTest0010].
Specific machine info:
======================
Hostname: linux-5
OS: RedHat Linux 9.0 (GNOME)
======================================================================
- relates to
-
JDK-6481846 REGRESSION:the size of popup menu was not correted with the new model when ComboBoxModel is changed
- Closed