6675802: Regression: heavyweight popups cause SecurityExceptions in applets
The problem code in Popup class is surrounded by AccessController.doPrivileged() Reviewed-by: alexp
This commit is contained in:
parent
697620a8bb
commit
7cc4f58228
@ -229,7 +229,14 @@ public class Popup {
|
|||||||
// Popups are typically transient and most likely won't benefit
|
// Popups are typically transient and most likely won't benefit
|
||||||
// from true double buffering. Turn it off here.
|
// from true double buffering. Turn it off here.
|
||||||
getRootPane().setUseTrueDoubleBuffering(false);
|
getRootPane().setUseTrueDoubleBuffering(false);
|
||||||
setAlwaysOnTop(true);
|
java.security.AccessController.doPrivileged(
|
||||||
|
new java.security.PrivilegedAction<Object>() {
|
||||||
|
public Object run() {
|
||||||
|
setAlwaysOnTop(true);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void update(Graphics g) {
|
public void update(Graphics g) {
|
||||||
|
43
jdk/test/javax/swing/JPopupMenu/6675802/bug6675802.java
Normal file
43
jdk/test/javax/swing/JPopupMenu/6675802/bug6675802.java
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2008 Sun Microsystems, Inc. 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.
|
||||||
|
*
|
||||||
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
* version 2 for more details (a copy is included in the LICENSE file that
|
||||||
|
* accompanied this code).
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License version
|
||||||
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||||
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*
|
||||||
|
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
||||||
|
* CA 95054 USA or visit www.sun.com if you need additional information or
|
||||||
|
* have any questions.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @test
|
||||||
|
* @bug 6675802
|
||||||
|
* @summary Checks that there is no AccessControlException when
|
||||||
|
* a heaviweight popup menu is shown from an applet.
|
||||||
|
* @author Mikhail Lapshin
|
||||||
|
* @run main bug6675802
|
||||||
|
*/
|
||||||
|
|
||||||
|
import javax.swing.*;
|
||||||
|
|
||||||
|
public class bug6675802 {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.setSecurityManager(new SecurityManager());
|
||||||
|
final JPopupMenu popupMenu = new JPopupMenu();
|
||||||
|
popupMenu.add(new JMenuItem("Click"));
|
||||||
|
popupMenu.show(null, 0, 0);
|
||||||
|
System.out.println("Test passed");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user