The GWT team does not provide a list of unsupported browsers, only supported browsers, and this is an undefined list in the "most recent versions of Internet Explorer, Firefox and Safari" (Opera also in most cases). "
If you have a good idea that the browser / version will not work, you can use this code :
public static native String getUserAgent()
to find out which browser is being used, and possibly prepare a workflow.
On the other hand, rendering web pages in a browser can fail in many subtle ways, ranging from mild annoyance to a catastrophic situation, and often there is no way to find out where your page falls on this scale. One of the main reasons for GWT is that you can stop worrying about it. At least until that happens.
Glenn source share