test/jdk/java/awt/Focus/FocusOwnerFrameOnClick/FocusOwnerFrameOnClick.java
changeset 54231 e4813eded7cb
parent 47216 71c04702a3d5
equal deleted inserted replaced
54230:d9d9655bb077 54231:e4813eded7cb
     1 /*
     1 /*
     2  * Copyright (c) 1995, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1995, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    20  * or visit www.oracle.com if you need additional information or have any
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    21  * questions.
    22  */
    22  */
    23 
    23 
    24 /*
    24 /*
    25   @test      FocusOwnerFrameOnClick.java %W% %E%
    25   @test
    26   @key headful
    26   @key headful
    27   @bug       6886678
    27   @bug       6886678
    28   @summary   Tests that clicking an owner frame switches focus from its owned window.
    28   @summary   Tests that clicking an owner frame switches focus from its owned window.
    29   @author    Anton Tarasov: area=awt.focus
       
    30   @library   ../../regtesthelpers
    29   @library   ../../regtesthelpers
    31   @build     Util
    30   @build     Util
    32   @run       main FocusOwnerFrameOnClick
    31   @run       main FocusOwnerFrameOnClick
    33 */
    32 */
    34 
    33 
    35 import java.awt.*;
    34 import java.awt.*;
    36 import java.awt.event.*;
    35 import java.awt.event.*;
    37 import java.applet.Applet;
       
    38 import java.util.concurrent.atomic.AtomicBoolean;
    36 import java.util.concurrent.atomic.AtomicBoolean;
    39 import java.lang.reflect.InvocationTargetException;
       
    40 import test.java.awt.regtesthelpers.Util;
    37 import test.java.awt.regtesthelpers.Util;
    41 
    38 
    42 public class FocusOwnerFrameOnClick extends Applet {
    39 public class FocusOwnerFrameOnClick {
    43     Robot robot;
    40     Robot robot;
    44     Frame frame = new Frame("Frame");
    41     Frame frame = new Frame("Frame");
    45     Window window = new Window(frame);
    42     Window window = new Window(frame);
    46     Button fButton = new Button("fButton");
    43     Button fButton = new Button("fButton");
    47     Button wButton = new Button("wButton");
    44     Button wButton = new Button("wButton");