1 /*
   2  * Copyright (c) 2016, 2017, 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 /**
  25  * @test
  26  * @key headful
  27  * @bug 8025130
  28  * @summary setLocationByPlatform has no effect
  29  * @author Dmitry Markov
  30  * @library ../../regtesthelpers
  31  * @build Util
  32  * @run main SetWindowLocationByPlatformTest
  33  */
  34 
  35 import java.awt.*;
  36 
  37 import test.java.awt.regtesthelpers.Util;
  38 
  39 public class SetWindowLocationByPlatformTest {
  40     public static void main(String[] args) {
  41         Robot r = Util.createRobot();
  42 
  43         Frame frame1 = new Frame ("First Frame");
  44         frame1.setSize(500, 300);
  45         frame1.setLocationByPlatform(true);
  46         frame1.setVisible(true);
  47         Util.waitForIdle(r);
  48 
  49         Frame frame2 = new Frame ("Second Frame");
  50         frame2.setSize(500, 300);
  51         frame2.setLocationByPlatform(true);
  52         frame2.setVisible(true);
  53         Util.waitForIdle(r);
  54 
  55         Point point1 = frame1.getLocationOnScreen();
  56         Point point2 = frame2.getLocationOnScreen();
  57 
  58         try {
  59             if (point1.equals(point2)) {
  60                 throw new RuntimeException("Test FAILED: both frames have the same location " + point1);
  61             }
  62         } finally {
  63             frame1.dispose();
  64             frame2.dispose();
  65         }
  66     }
  67 }
  68