-
Bug
-
Resolution: Fixed
-
P3
-
6
-
b91
-
other
-
solaris_10
-
Verified
works fine in 1.5.0 and reproducible only in 1.6.0
1. Create a Text Area.
2. Enter some text into it so that horizontal and vertical scrollbar comes up
3. move the vertical scroll bar to top and horizontal scroll bar to left.
4. move the mouse pointer on the area where in horizontal and vertical scroll bar
meets.
Expected result: mouse pointer should be "Arrow"
Actual result: mouse pointer is "I" (editable sign)
5.click on Bottum Right corner where in harizontal and vertical scroll bar meets.
Expected result: Nothing should happen
Actual result: Vertical scroll bar starts moving Downwards,
Run the following Code to reproduce the defect.
import java.awt.*;
public class TestScrollBar {
public static void main (String argv[]) {
Frame f =new Frame ("Java Frame");
f.setSize(800,800);
f.setLayout(new FlowLayout());
TextArea ta = new TextArea();
ta.setBackground(Color.BLUE);
f.add(ta);
f.setVisible(true);
}
}
- relates to
-
JDK-6446872 regression:Pressing any character changes default cursor to Text cursor when the mouse is on the scr
-
- Closed
-
-
JDK-6459825 TextArea popupMenu is visible when right clicked on the intersection area of scrollbar
-
- Closed
-
-
JDK-6497109 Dragging mouse out of box for text of TextArea changes mouse cursor (from "beam" to "default")
-
- Closed
-
-
JDK-6530306 Mouse cursor is not changing to text cursor when the mouse is inside the textarea from jdk6.0 b92
-
- Closed
-
-
JDK-6530307 painting is not happening properly on textarea scrollbar or incorrect textarea scrollbar
-
- Closed
-