|
| 1 | +/* |
| 2 | + * Copyright (c) 2004, 2024, 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 | +import java.awt.FlowLayout; |
| 25 | +import java.awt.Frame; |
| 26 | +import java.awt.TextArea; |
| 27 | + |
| 28 | +/* |
| 29 | + * @test |
| 30 | + * @bug 4992455 |
| 31 | + * @summary REGRESSION: TextArea does not wrap text in JDK 1.5 as JDK 1.4.x |
| 32 | + * @library /java/awt/regtesthelpers |
| 33 | + * @build PassFailJFrame |
| 34 | + * @run main/manual WordWrappingTest |
| 35 | +*/ |
| 36 | + |
| 37 | +public class WordWrappingTest { |
| 38 | + private static final String INSTRUCTIONS = """ |
| 39 | + Please look at the frame 'WordWrappingTest' |
| 40 | + It contains two TextAreas that have text 'This text should be wrapped.' |
| 41 | + One of them has a vertical scrollbar only. Another has no |
| 42 | + scrollbars at all. |
| 43 | + If their text is not wrapped at word boundaries and you partially see |
| 44 | + mentioned text, the test failed. |
| 45 | + """; |
| 46 | + |
| 47 | + public static void main(String[] args) throws Exception { |
| 48 | + PassFailJFrame.builder() |
| 49 | + .title("WordWrappingTest") |
| 50 | + .instructions(INSTRUCTIONS) |
| 51 | + .testUI(WordWrappingTest::createGUI) |
| 52 | + .build() |
| 53 | + .awaitAndCheck(); |
| 54 | + } |
| 55 | + |
| 56 | + public static Frame createGUI() { |
| 57 | + Frame f = new Frame("WordWrappingTest"); |
| 58 | + f.setLayout(new FlowLayout()); |
| 59 | + f.add(new TextArea("This text should be wrapped.", 5, 10, |
| 60 | + TextArea.SCROLLBARS_VERTICAL_ONLY)); |
| 61 | + f.add(new TextArea("This text should be wrapped.", 5, 10, |
| 62 | + TextArea.SCROLLBARS_NONE)); |
| 63 | + f.pack(); |
| 64 | + return f; |
| 65 | + } |
| 66 | +} |
0 commit comments