What's that to do with GWT?
You've effectively added button with position: absolute, without ever
giving it a parent with position: relative so that the browser can
calculate the button's dimentions.
-- Joe
I'm trying out GWT and was disappointed to see the following basic
program render very differently on Firefox and Chrome. Am I missing
something?
On Chrome the buttons fill the page. On Firefox the buttons fill
vertically but not horizontally.
Windows 7
GWT 2.4.0
Firefox 11.0
Chrome 18.0.1025.162 m
public void onModuleLoad() {
LayoutPanel layoutPanel = new LayoutPanel();
RootLayoutPanel rootLayoutPanel = RootLayoutPanel.get();
rootLayoutPanel.add(layoutPanel);
layoutPanel.setSize("100%", "100%");