< prev index next >

test/jdk/java/awt/Mouse/GetMousePositionTest/GetMousePositionWithPopup.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 29,45 **** import java.awt.event.MouseMotionAdapter; /** * @test * @key headful ! * @bug 8012026 8027154 * @summary Component.getMousePosition() does not work in an applet on MacOS * @author Petr Pchelko * @library ../../regtesthelpers * @build Util * @compile GetMousePositionWithPopup.java ! * @run main/othervm GetMousePositionWithPopup */ public class GetMousePositionWithPopup { private static Frame frame1; --- 29,46 ---- import java.awt.event.MouseMotionAdapter; /** * @test * @key headful ! * @bug 8012026 8027154 8196017 ! * @requires (os.family == "mac") * @summary Component.getMousePosition() does not work in an applet on MacOS * @author Petr Pchelko * @library ../../regtesthelpers * @build Util * @compile GetMousePositionWithPopup.java ! * @run main GetMousePositionWithPopup */ public class GetMousePositionWithPopup { private static Frame frame1;
*** 88,98 **** frame2.addMouseMotionListener(new MouseMotionAdapter() { @Override public void mouseMoved(MouseEvent e) { Point positionInFrame2 = frame2.getMousePosition(); ! if (positionInFrame2.x != 30 || positionInFrame2.y != 30) { throw new RuntimeException("Wrong position reported. Should be [30, 30] but was [" + positionInFrame2.x + ", " + positionInFrame2.y + "]"); } Point positionInFrame1 = frame1.getMousePosition(); --- 89,99 ---- frame2.addMouseMotionListener(new MouseMotionAdapter() { @Override public void mouseMoved(MouseEvent e) { Point positionInFrame2 = frame2.getMousePosition(); ! if ((Math.abs(positionInFrame2.x - 30) > 2) || (Math.abs(positionInFrame2.y - 30) > 2)) { throw new RuntimeException("Wrong position reported. Should be [30, 30] but was [" + positionInFrame2.x + ", " + positionInFrame2.y + "]"); } Point positionInFrame1 = frame1.getMousePosition();
< prev index next >