Hi,
my GWT app does not start under Safari.
The app first shows a loading indicator, which is then removed and substituted by the app's main panel, a DockLayoutPanel:
RootPanel p = RootPanel.get("apl-Indicator");
Element e = p.getElement();
e.removeFromParent();
...
RootLayoutPanel.get().add(mainPanel);
The Safari user reports that the loading indicator shows up forever...
Is this a mistake or doesn't GWT support this platform?
Thanks
Magnus