[ http://issues.apache.org/jira/browse/HARMONY-2627?page=all ]
Denis Kishenko updated HARMONY-2627:
------------------------------------
Patch Info: [Patch Available]
> [classlib][swing] JTextField.getScrollOffset() returns 5 while RI returns 0
> ---------------------------------------------------------------------------
>
> Key: HARMONY-2627
> URL: http://issues.apache.org/jira/browse/HARMONY-2627
> Project: Harmony
> Issue Type: Bug
> Components: Classlib
> Reporter: Denis Kishenko
> Attachments: H2627-JTextField.patch, H2627-JTextFieldTest.patch
>
>
> javax.swing.JTextField.getScrollOffset() returns 5 while RI returns 0.
> Compatibility issue.
> Code for reproducing:
> import junit.framework.TestCase;
> import javax.swing.*;
> public class Test extends TestCase {
> public void testcase1() {
> JTextField s = new JTextField();
> assertEquals(0, s.getScrollOffset());
> }
> }
> Output on Sun 1.5
> =================
> .
> Time: 0.391
> OK (1 test)
> Output on Harmony:
> ==================
> .F
> Time: 1.953
> There was 1 failure:
> 1) testcase1(Test)junit.framework.AssertionFailedError: expected:<0> but
> was:<5>
> at Test.testcase1(Test.java:7)
> at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> FAILURES!!!
> Tests run: 1, Failures: 1, Errors: 0
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|