I'm evaluating GWT 2.0. I've created a very simple application (see
below).
I execute it from Eclipse GWT 2.0 plug-in.

DockLayoutPanel p = new DockLayoutPanel(Unit.EM);
p.addNorth(new Button("north"), 2);
p.addSouth(new Button("south"), 2);
p.addEast(new Button("east"), 2);
p.addWest(new Button("west"), 2);
p.add(new Button("center"));

RootLayoutPanel rp = RootLayoutPanel.get();
rp.add(p);

Chrome displays everything correctly while Firefox displays some
clutter (I'm not talking about IE).
Could anybody explain what happens?

Thanks in advance

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

Reply via email to