GWT - how to compile code to work on IE10
gwt, html, internet-explorer-10, javascript
Solution
GWT 2.5 does not have user agent specific to IE10 i.e No separate compiled permutation for IE10.
However, code compiled to work with IE9 will be able to function in IE10 as well. You need to pick up information on GWT 2.5 compatibility for IE9 here - https://developers.google.com/web-toolkit/doc/latest/DevGuideIE9
Note -
1) To force IE10 in IE9 mode - http://msdn.microsoft.com/en-in/library/ie/hh920756(v=vs.85).aspx
2) More information on MSDN IE 10 Compatibility Mode.
3) GWT forum discussion
4) Track GWT Steering Committee discussion.
Problem
Does GWT 2.5 supports ie10? If it does, what agent i should specify?