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 * @author Sean Chou
33 */
34
35 import java.awt.FlowLayout;
36 import java.awt.TextArea;
37 import java.awt.Toolkit;
38 import java.lang.reflect.Field;
39
40 import javax.swing.JFrame;
41 import javax.swing.JTextArea;
42 import javax.swing.SwingUtilities;
43 import javax.swing.text.DefaultCaret;
44
45 import sun.awt.SunToolkit;
46
47 public class bug7129742 {
48
49 public static DefaultCaret caret = null;
|
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 * @author Sean Chou
35 */
36
37 import java.awt.FlowLayout;
38 import java.awt.TextArea;
39 import java.awt.Toolkit;
40 import java.lang.reflect.Field;
41
42 import javax.swing.JFrame;
43 import javax.swing.JTextArea;
44 import javax.swing.SwingUtilities;
45 import javax.swing.text.DefaultCaret;
46
47 import sun.awt.SunToolkit;
48
49 public class bug7129742 {
50
51 public static DefaultCaret caret = null;
|