I Created a simple frame and tried to display it in Firefox in
develpoment mode.
The frame appears correctly sized for about 1/2 second, and then
automatically resizes
 to take up the entire Firefox display.

When I try this with with either IE or Chrome, the frame stays in the
specified size.
         (Tried with: IE 8,  FireFox 3.6.13 and Chrome 8.0.552.237)

public class FramesPage extends Composite
{
   private Frame frame;
   private   AbsolutePanel  absframePanel = new AbsolutePanel();
   private   VerticalPanel  vPanel = new VerticalPanel();

   public FramesPage()
   {
      //initWidget(absframePanel);
      absframePanel.setSize("800px", "800px");
      RootPanel.get().add(absframePanel);

      frame = new Frame("http://www.google.com/";);
      frame.setSize("500px", "300px");

      vPanel.setSize("600px", "600px");
      vPanel.add(frame);
      absframePanel.add(vPanel, 50, 20);
   }
}

Is the problem with GWT,Firefox or perhaps me ?

Thanks for any input.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to