< prev index next >

test/java/awt/Frame/MaximizedToUnmaximized/MaximizedToUnmaximized.java

Print this page
rev 14836 : 8159690: [TESTBUG] Mark headful tests with @key headful.


  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 import java.awt.Frame;
  24 import java.awt.GraphicsConfiguration;
  25 import java.awt.GraphicsEnvironment;
  26 import java.awt.Insets;
  27 import java.awt.Rectangle;
  28 import java.awt.Robot;
  29 import java.awt.Toolkit;
  30 
  31 /**
  32  * @test

  33  * @bug 8065739
  34  * @summary [macosx] Frame warps to lower left of screen when displayed
  35  * @author Alexandr Scherbatiy
  36  */
  37 public class MaximizedToUnmaximized {
  38 
  39     public static void main(String[] args) throws Exception {
  40         testFrame(false);
  41         testFrame(true);
  42     }
  43 
  44     static void testFrame(boolean isUndecorated) throws Exception {
  45         Frame frame = new Frame();
  46         try {
  47             Robot robot = new Robot();
  48             robot.setAutoDelay(100);
  49 
  50             frame.setUndecorated(isUndecorated);
  51             GraphicsConfiguration gc = GraphicsEnvironment.getLocalGraphicsEnvironment()
  52                     .getDefaultScreenDevice().getDefaultConfiguration();




  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 import java.awt.Frame;
  24 import java.awt.GraphicsConfiguration;
  25 import java.awt.GraphicsEnvironment;
  26 import java.awt.Insets;
  27 import java.awt.Rectangle;
  28 import java.awt.Robot;
  29 import java.awt.Toolkit;
  30 
  31 /**
  32  * @test
  33  * @key headful
  34  * @bug 8065739
  35  * @summary [macosx] Frame warps to lower left of screen when displayed
  36  * @author Alexandr Scherbatiy
  37  */
  38 public class MaximizedToUnmaximized {
  39 
  40     public static void main(String[] args) throws Exception {
  41         testFrame(false);
  42         testFrame(true);
  43     }
  44 
  45     static void testFrame(boolean isUndecorated) throws Exception {
  46         Frame frame = new Frame();
  47         try {
  48             Robot robot = new Robot();
  49             robot.setAutoDelay(100);
  50 
  51             frame.setUndecorated(isUndecorated);
  52             GraphicsConfiguration gc = GraphicsEnvironment.getLocalGraphicsEnvironment()
  53                     .getDefaultScreenDevice().getDefaultConfiguration();


< prev index next >