< prev index next >

test/java/awt/TextArea/TextAreaCaretVisibilityTest/bug7129742.java

Print this page
rev 14989 : 8160974: [TESTBUG] Mark more headful tests with @key headful.


   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  * Portions Copyright (c) 2012 IBM Corporation
  26  */
  27 
  28 
  29 /* @test


  30  * @bug 7129742
  31  * @summary Focus in non-editable TextArea is not shown on Linux.
  32  * @requires (os.family == "linux" | os.family == "solaris")
  33  * @modules java.desktop/sun.awt
  34  *          java.desktop/java.awt.peer
  35  *          java.desktop/sun.awt.X11
  36  * @author Sean Chou
  37  */
  38 
  39 import java.awt.FlowLayout;
  40 import java.awt.TextArea;
  41 import java.awt.Robot;
  42 import java.lang.reflect.Field;
  43 
  44 import javax.swing.JFrame;
  45 import javax.swing.JTextArea;
  46 import javax.swing.SwingUtilities;
  47 import javax.swing.text.DefaultCaret;
  48 
  49 import sun.awt.AWTAccessor;




   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  * Portions Copyright (c) 2012 IBM Corporation
  26  */
  27 
  28 
  29 /*
  30  * @test
  31  * @key headful
  32  * @bug 7129742
  33  * @summary Focus in non-editable TextArea is not shown on Linux.
  34  * @requires (os.family == "linux" | os.family == "solaris")
  35  * @modules java.desktop/sun.awt
  36  *          java.desktop/java.awt.peer
  37  *          java.desktop/sun.awt.X11
  38  * @author Sean Chou
  39  */
  40 
  41 import java.awt.FlowLayout;
  42 import java.awt.TextArea;
  43 import java.awt.Robot;
  44 import java.lang.reflect.Field;
  45 
  46 import javax.swing.JFrame;
  47 import javax.swing.JTextArea;
  48 import javax.swing.SwingUtilities;
  49 import javax.swing.text.DefaultCaret;
  50 
  51 import sun.awt.AWTAccessor;


< prev index next >