5276N/A/*
5276N/A * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
5276N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5276N/A *
5276N/A * This code is free software; you can redistribute it and/or modify it
5276N/A * under the terms of the GNU General Public License version 2 only, as
5276N/A * published by the Free Software Foundation.
5276N/A *
5276N/A * This code is distributed in the hope that it will be useful, but WITHOUT
5276N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5276N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
5276N/A * version 2 for more details (a copy is included in the LICENSE file that
5276N/A * accompanied this code).
5276N/A *
5276N/A * You should have received a copy of the GNU General Public License version
5276N/A * 2 along with this work; if not, write to the Free Software Foundation,
5276N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5276N/A *
5276N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
5276N/A * or visit www.oracle.com if you need additional information or have any
5276N/A * questions.
5276N/A */
5276N/A
5276N/A/*
5276N/A @test
5276N/A @bug 7160609
5276N/A @summary A window with huge dimensions shouldn't crash JVM
5276N/A @author anthony.petrov@oracle.com: area=awt.toplevel
5276N/A @run main HugeFrame
5276N/A*/
5276N/A
5276N/Aimport java.awt.*;
5276N/A
5276N/Apublic class HugeFrame {
5276N/A public static void main(String[] args) throws Exception {
5276N/A Frame f = new Frame("Huge");
5276N/A
5276N/A // 8193+ should already produce a crash, but let's go extreme...
5276N/A f.setBounds(10, 10, 30000, 500000);
5276N/A f.setVisible(true);
5276N/A
5276N/A // We would crash by now if the bug wasn't fixed
5276N/A Thread.sleep(1000);
5276N/A System.err.println(f.getBounds());
5276N/A
5276N/A // Cleanup
5276N/A f.dispose();
5276N/A }
5276N/A}