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 javax.swing.JFrame;
25 import javax.swing.JLabel;
26 import javax.swing.SwingUtilities;
27
28 /**
29 * @test
30 * @bug 8034955
31 * @author Alexander Scherbatiy
32 * @summary JLabel/JToolTip throw ClassCastException for "<html>a<title>"
33 * @run main bug8034955
34 */
35 public class bug8034955 {
36
37 public static void main(String[] args) throws Exception {
38 SwingUtilities.invokeAndWait(new Runnable() {
39
40 @Override
41 public void run() {
42 JFrame frame = new JFrame();
43 frame.getContentPane().add(new JLabel("<html>a<title>"));
44 frame.pack();
45 frame.setVisible(true);
46 }
47 });
48 }
49 }
|
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 javax.swing.JFrame;
25 import javax.swing.JLabel;
26 import javax.swing.SwingUtilities;
27
28 /**
29 * @test
30 * @key headful
31 * @bug 8034955
32 * @author Alexander Scherbatiy
33 * @summary JLabel/JToolTip throw ClassCastException for "<html>a<title>"
34 * @run main bug8034955
35 */
36 public class bug8034955 {
37
38 public static void main(String[] args) throws Exception {
39 SwingUtilities.invokeAndWait(new Runnable() {
40
41 @Override
42 public void run() {
43 JFrame frame = new JFrame();
44 frame.getContentPane().add(new JLabel("<html>a<title>"));
45 frame.pack();
46 frame.setVisible(true);
47 }
48 });
49 }
50 }
|