1 /*
   2  * Copyright (c) 2016, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  @test
  26  @key headful
  27  @bug 6180449 8160764
  28  @summary TextArea scrolls to its left when selecting the text from the end.
  29  @run main TextAreaScrolling
  30  */
  31 
  32 import java.awt.Frame;
  33 import java.awt.Point;
  34 import java.awt.Rectangle;
  35 import java.awt.Robot;
  36 import java.awt.TextArea;
  37 import java.awt.event.InputEvent;
  38 
  39 public class TextAreaScrolling {
  40     Frame mainFrame;
  41     TextArea textArea;
  42     Robot robot;
  43 
  44     TextAreaScrolling() {
  45         try {
  46             robot = new Robot();
  47         } catch (Exception ex) {
  48             throw new RuntimeException("Robot Creation Failed");
  49         }
  50 
  51         mainFrame = new Frame();
  52         mainFrame.setSize(200, 200);
  53         mainFrame.setLocation(200, 200);
  54 
  55         textArea = new TextArea();
  56         textArea.setText("1234 5678");
  57         textArea.setSelectionStart(3);
  58         textArea.setSelectionEnd(4);
  59         mainFrame.add(textArea);
  60         mainFrame.setVisible(true);
  61         textArea.requestFocusInWindow();
  62     }
  63 
  64     public void dispose() {
  65         if (mainFrame != null) {
  66             mainFrame.dispose();
  67         }
  68     }
  69 
  70     public void performTest() {
  71         robot.waitForIdle();
  72         robot.delay(200);
  73         Point loc = textArea.getLocationOnScreen();
  74         Rectangle textAreaBounds = new Rectangle();
  75         textArea.getBounds(textAreaBounds);
  76 
  77         // Move mouse at center in first row of TextArea.
  78         robot.mouseMove(loc.x + textAreaBounds.width / 2, loc.y + 5);
  79 
  80         // Perform selection by scrolling to left from end of char sequence.
  81         robot.mousePress(InputEvent.BUTTON1_MASK);
  82         robot.mouseMove(loc.x - 5, loc.y + 5);
  83         robot.mouseRelease(InputEvent.BUTTON1_MASK);
  84 
  85         // Perform double click on beginning word of TextArea
  86         robot.mouseMove(loc.x + 5, loc.y + 5);
  87         robot.mousePress(InputEvent.BUTTON1_MASK);
  88         robot.mouseRelease(InputEvent.BUTTON1_MASK);
  89         robot.delay(100);
  90         robot.mousePress(InputEvent.BUTTON1_MASK);
  91         robot.mouseRelease(InputEvent.BUTTON1_MASK);
  92         robot.delay(100);
  93         robot.waitForIdle();
  94 
  95         if (textArea.getSelectedText().contentEquals("5678")) {
  96             dispose();
  97             throw new RuntimeException ("TextArea over scrolled towards left. "
  98                 + "Expected selected text: '1234 ' and for mac '1234' "
  99                 + "Actual selected text: 5678");
 100         }
 101     }
 102 
 103     public static void main(String argv[]) throws RuntimeException {
 104         TextAreaScrolling test = new TextAreaScrolling();
 105         test.performTest();
 106         test.dispose();
 107     }
 108 }