Hello,
I'm maintaining an application which uses gwt's version as old as 1.3
Without using latest features, it has worked fine so far.
But with FF 3.6 you only see white blank page, nothing seems to be
rendered.
No exceptions neither in server logs nor in browser or firebug check.
There were no problems with FF 3.5.8 aswell.
Though with IE 8, I had to add this to my module's gwt.xml:
<property-provider name="user.agent"><![CDATA[
var ua = navigator.userAgent.toLowerCase();
var makeVersion = function(result) {
return (parseInt(result[1]) * 1000) + parseInt(result[2]);
};
if (ua.indexOf("opera") != -1) {
return "opera";
} else if (ua.indexOf("webkit") != -1) {
return "safari";
} else if (ua.indexOf("msie") != -1) {
if (document.documentMode >= 8) {
return "ie8";
} else {
var result = /msie ([0-9]+)\.([0-9]+)/.exec(ua);
if (result && result.length == 3) {
var v = makeVersion(result);
if (v >= 6000) {
return "ie6";
}
}
}
} else if (ua.indexOf("gecko") != -1) {
var result = /rv:([0-9]+)\.([0-9]+)/.exec(ua);
if (result && result.length == 3) {
if (makeVersion(result) >= 1008)
return "gecko1_8";
}
return "gecko";
}
return "unknown";
]]></property-provider>
and to index.html:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
which emulated IE8 to IE 7 then
But at present time, I have no ideas how to make things work without
upgrading the gwt version for FF 3.6.
Thanks in advance,
Roland
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.