-
Bug
-
Resolution: Fixed
-
P2
-
1.4.0
-
rc1
-
x86
-
windows_nt
-
Verified
Name: mt13159 Date: 10/03/2001
Reproducible with JDK 1.4 build 81, Netscape 4.76/IE 5.5
Probelm Description
===================
While loading Oracle Application, browser gets the focus
instead of the Oracle Application which gets loaded in a
separate frame.Applications's frame goes behind the browser.
After loading Oracle Application user has to click on the
frame again to get the application to the front. This seems
to happen only on Windows and happens on both IE and Netscape.
Steps to reproduce:
-------------------
[1] Bring up the test Application below
[2] Verify that after loading the applications frame
the browser comes in the front
Here is the test case:
------------------- FrameTest.java start--------------------------------
import java.applet.*;
import javax.swing.*;
import java.awt.*;
public class FrameTest extends Applet {
public void init() {
System.out.println("Inside init");
createFrame();
}
public void start(){
System.out.println("FrameTest started");
}
public void stop(){
System.out.println("FrameTest Stopped");
}
private void createFrame() {
JFrame f =new JFrame();
f.setBounds(getBounds());
f.getContentPane().add(new Label("Hello
World"),BorderLayout.CENTER);
f.setTitle("Hello World");
f.setVisible(true);
}
}
------------------- FrameTest.java end--------------------------------
(Review ID: 132979)
======================================================================
- relates to
-
JDK-8055180 The frame "Hello World" is not active .
-
- Closed
-