< prev index next >

test/java/awt/Window/WindowJumpingTest/WindowJumpingTest.java

Print this page
rev 14989 : 8160974: [TESTBUG] Mark more headful tests with @key headful.


   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 /* @test


  25  * @bug 8080729
  26  * @summary Dialogs on multiscreen jump to parent frame on focus gain
  27  * @author Dmitry Markov
  28  * @library ../../regtesthelpers
  29  * @build Util
  30  * @run main WindowJumpingTest
  31  */
  32 import java.awt.*;
  33 
  34 import test.java.awt.regtesthelpers.Util;
  35 
  36 public class WindowJumpingTest {
  37     public static void main(String[] args) throws AWTException {
  38         Robot r = Util.createRobot();
  39 
  40         GraphicsEnvironment graphicsEnvironment = GraphicsEnvironment.getLocalGraphicsEnvironment();
  41         GraphicsDevice[] graphicsDevices = graphicsEnvironment.getScreenDevices();
  42         if (graphicsDevices.length < 2) {
  43             System.out.println("This is multi-screen test... Skipping!");
  44             return;




   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 8080729
  28  * @summary Dialogs on multiscreen jump to parent frame on focus gain
  29  * @author Dmitry Markov
  30  * @library ../../regtesthelpers
  31  * @build Util
  32  * @run main WindowJumpingTest
  33  */
  34 import java.awt.*;
  35 
  36 import test.java.awt.regtesthelpers.Util;
  37 
  38 public class WindowJumpingTest {
  39     public static void main(String[] args) throws AWTException {
  40         Robot r = Util.createRobot();
  41 
  42         GraphicsEnvironment graphicsEnvironment = GraphicsEnvironment.getLocalGraphicsEnvironment();
  43         GraphicsDevice[] graphicsDevices = graphicsEnvironment.getScreenDevices();
  44         if (graphicsDevices.length < 2) {
  45             System.out.println("This is multi-screen test... Skipping!");
  46             return;


< prev index next >